Find an API

Search public APIs with auth details & Postman guides

← All APIs

Amazon Transcribe Service

amazonaws · Cloud

Cloud No Auth Free & Open cloud Sandbox

Amazon Transcribe offers three main types of batch transcription: Standard , Medical , and Call Analytics . Standard transcriptions are the most common option. Refer to for details. Medical transcriptions are tailored to medical professionals and incorporate medical terms. A common use case for this service is transcribing doctor-patient dialogue into after-visit notes. Refer to for details. Call Analyt

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

POST ListCallAnalyticsCategories

Provides a list of Call Analytics categories, including all rules that make up each category. To get detailed information about a specific Call Analytics category, use the operation.

https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListCallAnalyticsCategories?NextToken=example&MaxResults=example

Hover any highlighted part to learn what it does

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

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'Transcribe.ListCallAnalyticsCategories'
  },
}); 
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/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListCallAnalyticsCategories")
	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", "Transcribe.ListCallAnalyticsCategories")

	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/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListCallAnalyticsCategories")
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"] = "Transcribe.ListCallAnalyticsCategories"

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

Provides a list of Call Analytics jobs that match the specified criteria. If no criteria are specified, all Call Analytics jobs are returned. To get detailed information about a specific Call Analytics job, use the operation.

https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListCallAnalyticsJobs?NextToken=example&MaxResults=example

Hover any highlighted part to learn what it does

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

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'Transcribe.ListCallAnalyticsJobs'
  },
}); 
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/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListCallAnalyticsJobs")
	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", "Transcribe.ListCallAnalyticsJobs")

	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/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListCallAnalyticsJobs")
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"] = "Transcribe.ListCallAnalyticsJobs"

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

Provides a list of custom language models that match the specified criteria. If no criteria are specified, all custom language models are returned. To get detailed information about a specific custom language model, use the operation.

https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListLanguageModels?NextToken=example&MaxResults=example

Hover any highlighted part to learn what it does

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

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'Transcribe.ListLanguageModels'
  },
}); 
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/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListLanguageModels")
	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", "Transcribe.ListLanguageModels")

	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/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListLanguageModels")
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"] = "Transcribe.ListLanguageModels"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/#X-Amz-Target=Transcribe.ListLanguageModels?" . http_build_query([
    "NextToken" => "example",
    "MaxResults" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: Transcribe.ListLanguageModels"
    ]),
]];
$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 Transcribe Service?

Amazon Transcribe Service 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 Transcribe Service is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗