No. This endpoint returns available: false when TikTok does not expose subtitle assets.
Subtitle and transcript URL discovery
Check whether a public TikTok post exposes transcript/subtitle files and return the available subtitle URLs by language. Accepts a public post URL or numeric video ID.
Get started with a simple API call.
const response = await fetch('https://api.crawlkit.sh/v1/crawl/tiktok/transcript', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"url": "https://www.tiktok.com/@khaby.lame/video/7234567890123456789"
})
});
const { data } = await response.json();
console.log(data.transcript.available, data.transcript.subtitles.length);Everything you need for reliable tiktok transcript workflows.
Fast way to know whether TikTok exposes subtitle files for a post.
Returns language and format for each subtitle asset.
Use subtitle URLs in speech-to-text, search indexing, or QA workflows.
Get started in minutes with our simple API.
Sign up for free and get your API key instantly. No credit card required.
Use our simple REST API with your favorite programming language.
Receive clean JSON responses ready to use in your application.
Get clean, structured JSON data with every request. Our API returns comprehensive data including status codes, timing information, and your remaining credits.
{
"success": true,
"data": {
"url": "https://www.tiktok.com/@khaby.lame/video/7234567890123456789",
"transcript": {
"available": true,
"subtitles": [
{
"language": "en",
"format": "webvtt",
"url": "https://v16-web.tiktokcdn.com/subtitle/..."
}
]
},
"timing": {
"total": 1820
},
"creditsUsed": 1,
"creditsRemaining": 95
}
}Common applications for TikTok Transcript.
Pull subtitle files into your media processing pipeline.
Check whether important posts ship with transcripts.
Index spoken content for search and semantic retrieval.
Everything you need to know about the TikTok Transcript API.
No. This endpoint returns available: false when TikTok does not expose subtitle assets.
Yes. You can send either a public TikTok post URL or a numeric video ID.
No. Crawlkit returns the subtitle asset URLs plus metadata so you can download them directly.
TikTok Transcript uses 1 credit per request.
Get 100 free credits to test the API. No credit card required.