TikTok API

TikTok Video transcript API

Spoken-word transcript for a single video by URL, with timestamps where available.

POST/v1/run/tiktok.video_transcript
Uptime
100.00%
30d · 246 calls
Requests
246
30d · weekly, last 12 wks
Response
1.7s
median · 30d

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())
Open in
Get a free key
Sample response
{
  "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."
      }
    ]
  }
}
Response interface
interface TiktokVideoTranscriptResponse {
  data: {
    language?: string;
    transcript: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-12 · uptime and latency measured over 30d
POST /v1/run/tiktok.video_transcript
curl -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"}'
FieldTypeExample value
Request body
urlstring"https://www.tiktok.com/@cristiano/video/7375000000000000000"Full TikTok video URL.
Response
foundbooleantrue
dataobject
data.urlstring"https://www.tiktok.com/@cristiano/video/7375000000000000000"
data.languagestring"en"
data.transcriptstring"Today is matchday and we are ready to give everything for the win."
data.segmentsarray
data.segments[].startnumber0
data.segments[].endnumber2.4
data.segments[].textstring"Today is matchday"
Price
Price per requestUSD$0.0012
Price /1k reqUSD$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, 100.0% of TikTok video transcript calls through AnyAPI succeeded, with a median response time of 1.7 seconds across 246 measured calls.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Spoken-word transcript for a single video by URL, with timestamps where available. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of TikTok video transcript calls through AnyAPI succeeded, with a median response time of 1.7 seconds across 246 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.