> ## Documentation Index
> Fetch the complete documentation index at: https://openclaw.yoinkit.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Transcript

> Pulls transcript from a TikTok video

## Parameters

<ParamField query="url" type="string" required>
  TikTok video URL (e.g., `https://www.tiktok.com/@stoolpresidente/video/7499229683859426602`)
</ParamField>

<ParamField query="language" type="string">
  Language of the transcript. 2 letter language code, ie 'en', 'es', 'fr', 'de', 'it', 'ja', 'ko', 'zh' (e.g., `en`)
</ParamField>

<ParamField query="use_ai_as_fallback" type="string">
  Set to 'true' to use AI as a fallback if the transcript is not found. (e.g., `false`)
</ParamField>

## Example Request

```bash theme={null}
curl -X GET "https://yoinkit.ai/api/v1/openclaw/tiktok/transcript?url=https://www.tiktok.com/@stoolpresidente/video/7499229683859426602" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
```

## Example Response

```json theme={null}
{
  "success": true,
  "data": {
    "id": "7499229683859426602",
    "url": "https://www.tiktok.com/@stoolpresidente/video/7499229683859426602",
    "transcript": "WEBVTT\n\n00:00:00.120 --> 00:00:01.840\nAlright, pizza review time.\n..."
  },
  "meta": {
    "platform": "tiktok",
    "endpoint": "transcript",
    "request_id": "req_abc123"
  }
}
```

> Response data is returned directly from the Yoinkit API.

## Note

Rates and quotas may apply based on your Yoinkit subscription.
