TikTok Transcript API

Full transcript of a TikTok video with timestamped segments.

Credits 8 per video Input a public post URL (?url=) Caching Cached forever

Request

One GET request with your API key. Same shape on every platform — swap the path, keep the code.

curl "https://api.scrapersocial.com/v1/tiktok/transcript?url=https%3A%2F%2Fwww.tiktok.com%2F%40tiktok%2Fvideo%2F7231338487075638570" \
  -H "Authorization: Bearer sk_live_..."

Response

Clean JSON in the standard envelope. Responses arrive in seconds; popular content in milliseconds.

{
  "data": {
    "platform": "tiktok",
    "entity_id": "7231338487075638570",
    "language": "en",
    "source": "subtitles",
    "text": "Today I want to show you the three settings everyone ignores when they set this up for the first time...",
    "segments": [
      {
        "start": 0,
        "end": 3.2,
        "text": "Today I want to show you the three settings"
      },
      {
        "start": 3.2,
        "end": 5.9,
        "text": "everyone ignores when they set this up"
      }
    ]
  },
  "request_id": "req_01JZX4M8Q2TE9W"
}

What it returns

Full transcript of a TikTok video with timestamped segments. Takes a public post URL via ?url= and returns the { data, request_id } envelope . Each call costs 8 credits per video returned — check the X-Credits-Charged and X-Credits-Remaining response headers. Cached responses cost the same and set x-cache: hit; add fresh=true to bypass the cache.

Try the TikTok Transcript endpoint free

100 trial credits on signup — no card, key on screen immediately.

Get your free API key