Get the spoken transcript for a TikTok video.
Endpoint
/v1/tiktok/videos/transcript
Query
Link to the TikTok video whose transcript should be returned.
Optional two-letter language code to request a transcript in a specific language when available.
When true, uses Social Fetch's AI fallback when a transcript is not otherwise available. Adds 10 credits on completed lookups (11 total with the base lookup).
const response = await fetch( "https://api.socialfetch.dev/v1/tiktok/videos/transcript?url=https://www.tiktok.com/@mrbeast/video/7596844935442189598", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);