Find an API

Search public APIs with auth details & Postman guides

← All APIs

Amazon Translate

amazonaws · Cloud

Cloud No Auth Free & Open cloud

Provides translation of the input content from the source language to the target language.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

POST ListLanguages

Provides a list of languages (RFC-5646 codes and names) that Amazon Translate supports.

https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListLanguages?NextToken=example&MaxResults=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target AWSShineFrontendService_20170701.ListLanguages
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListLanguages?NextToken=example&MaxResults=example" \
  -H "X-Amz-Target: AWSShineFrontendService_20170701.ListLanguages"
import requests
params = {
    "NextToken": "example",
    "MaxResults": "example"
}
headers = {
    "X-Amz-Target": "AWSShineFrontendService_20170701.ListLanguages"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListLanguages",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListLanguages');
url.searchParams.set('NextToken', 'example');
url.searchParams.set('MaxResults', 'example');

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'AWSShineFrontendService_20170701.ListLanguages'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListLanguages")
	q := baseURL.Query()
	q.Set("NextToken", "example")
	q.Set("MaxResults", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "AWSShineFrontendService_20170701.ListLanguages")

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListLanguages")
uri.query = URI.encode_www_form({
  "NextToken" => "example",
  "MaxResults" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "AWSShineFrontendService_20170701.ListLanguages"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListLanguages?" . http_build_query([
    "NextToken" => "example",
    "MaxResults" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: AWSShineFrontendService_20170701.ListLanguages"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST ListParallelData

Provides a list of your parallel data resources in Amazon Translate.

https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListParallelData?NextToken=example&MaxResults=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target AWSShineFrontendService_20170701.ListParallelData
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListParallelData?NextToken=example&MaxResults=example" \
  -H "X-Amz-Target: AWSShineFrontendService_20170701.ListParallelData"
import requests
params = {
    "NextToken": "example",
    "MaxResults": "example"
}
headers = {
    "X-Amz-Target": "AWSShineFrontendService_20170701.ListParallelData"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListParallelData",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListParallelData');
url.searchParams.set('NextToken', 'example');
url.searchParams.set('MaxResults', 'example');

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'AWSShineFrontendService_20170701.ListParallelData'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListParallelData")
	q := baseURL.Query()
	q.Set("NextToken", "example")
	q.Set("MaxResults", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "AWSShineFrontendService_20170701.ListParallelData")

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListParallelData")
uri.query = URI.encode_www_form({
  "NextToken" => "example",
  "MaxResults" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "AWSShineFrontendService_20170701.ListParallelData"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListParallelData?" . http_build_query([
    "NextToken" => "example",
    "MaxResults" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: AWSShineFrontendService_20170701.ListParallelData"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST ListTerminologies

Provides a list of custom terminologies associated with your account.

https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListTerminologies?NextToken=example&MaxResults=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target AWSShineFrontendService_20170701.ListTerminologies
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListTerminologies?NextToken=example&MaxResults=example" \
  -H "X-Amz-Target: AWSShineFrontendService_20170701.ListTerminologies"
import requests
params = {
    "NextToken": "example",
    "MaxResults": "example"
}
headers = {
    "X-Amz-Target": "AWSShineFrontendService_20170701.ListTerminologies"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListTerminologies",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListTerminologies');
url.searchParams.set('NextToken', 'example');
url.searchParams.set('MaxResults', 'example');

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'AWSShineFrontendService_20170701.ListTerminologies'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListTerminologies")
	q := baseURL.Query()
	q.Set("NextToken", "example")
	q.Set("MaxResults", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "AWSShineFrontendService_20170701.ListTerminologies")

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListTerminologies")
uri.query = URI.encode_www_form({
  "NextToken" => "example",
  "MaxResults" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "AWSShineFrontendService_20170701.ListTerminologies"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/#X-Amz-Target=AWSShineFrontendService_20170701.ListTerminologies?" . http_build_query([
    "NextToken" => "example",
    "MaxResults" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: AWSShineFrontendService_20170701.ListTerminologies"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Amazon Translate?

Amazon Translate is a Cloud API. Developers commonly use cloud APIs for:

  • provisioning and managing cloud infrastructure
  • automating deployments and container orchestration
  • monitoring uptime and performance metrics
  • managing storage buckets and databases
  • setting up auto-scaling and load balancing

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Amazon Translate is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗