TikTok Video transcript API
Spoken-word transcript for a single video by URL, with timestamps where available.
Provider network
Providers ranked by traffic
Call it
Make your first request
import os, requests res = requests.post( "https://api.getanyapi.com/v1/run/tiktok.video_transcript", headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"}, json={ "url": "" }, ) print(res.json())
{
"found": true,
"data": {
"url": "https://www.tiktok.com/@cristiano/video/7375000000000000000",
"language": "en",
"transcript": "Today is matchday and we are ready to give everything for the win.",
"segments": [
{
"start": 0,
"end": 2.4,
"text": "Today is matchday"
},
{
"start": 2.4,
"end": 5.1,
"text": "and we are ready to give everything for the win."
}
]
}
}interface TiktokVideoTranscriptResponse {
data: {
id?: string;
language?: string;
transcript: string;
url?: string;
} | null;
found: boolean;
reason?: "not_found";
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-20 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/tiktok.video_transcript \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.tiktok.com/@cristiano/video/7375000000000000000"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "https://www.tiktok.com/@cristiano/video/7375000000000000000"Full TikTok video URL. |
| Response | ||
| found | boolean | true |
| data | object | |
| data.url | string | "https://www.tiktok.com/@cristiano/video/7375000000000000000" |
| data.language | string | "en" |
| data.transcript | string | "Today is matchday and we are ready to give everything for the win." |
| data.segments | array | |
| data.segments[].start | number | 0 |
| data.segments[].end | number | 2.4 |
| data.segments[].text | string | "Today is matchday" |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the TikTok Video transcript API
The AnyAPI TikTok Video transcript API returns TikTok video transcript data as normalized JSON from one POST call to /v1/run/tiktok.video_transcript. Spoken-word transcript for a single video by URL, with timestamps where available. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 99.3% of TikTok video transcript calls through AnyAPI succeeded, with a median response time of 1.7 seconds across 293 measured calls.