Transcribe YouTube Videos
Extract full text transcripts from any YouTube video for analysis, repurposing, or reference.
Transcribe TikTok, YouTube & more
Extract text transcripts from social videos on TikTok, YouTube, Instagram, Twitter/X, and Facebook. Paste a video URL, get clean text back. Useful for content research, repurposing video to text, competitive analysis, and building training datasets.
Extract the spoken text transcript from a TikTok video. Returns the full transcribed audio content.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "video-transcripts",
"skill": "get_tiktok_transcript",
"input": {
"url": "https://www.tiktok.com/@charlidamelio/video/7281923046182938922"
}
}' \
https://api.toolrouter.com/v1/tools/callExtract the spoken text transcript from a YouTube video or short. Returns the full transcribed audio content.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "video-transcripts",
"skill": "get_youtube_transcript",
"input": {
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
}
}' \
https://api.toolrouter.com/v1/tools/callExtract the spoken text transcript from a Twitter/X video tweet. Uses AI transcription so may be slightly slow.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "video-transcripts",
"skill": "get_twitter_transcript",
"input": {
"url": "https://x.com/elonmusk/status/1234567890123456789"
}
}' \
https://api.toolrouter.com/v1/tools/callExtract the spoken text transcript from an Instagram post or reel video. Uses AI transcription so may be slightly slow.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "video-transcripts",
"skill": "get_instagram_transcript",
"input": {
"url": "https://www.instagram.com/reel/ABC123def456/"
}
}' \
https://api.toolrouter.com/v1/tools/callExtract the spoken text transcript from a Facebook post or reel video. Only works for videos with spoken content.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "video-transcripts",
"skill": "get_facebook_transcript",
"input": {
"url": "https://www.facebook.com/watch/?v=1234567890"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"video-transcripts","skill":"get_tiktok_transcript","input":{}}' \
https://api.toolrouter.com/v1/tools/callExtract full text transcripts from any YouTube video for analysis, repurposing, or reference.
Transform video transcripts into well-structured blog posts for SEO and content repurposing.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Optimize video content for search by extracting transcripts, auditing video page SEO, researching video keywords, and creating thumbnails.
Automatically dub videos into multiple languages with transcript extraction, translation, and AI voice generation.
Optimize YouTube videos for discovery with keyword research, SEO analysis, transcript extraction, and AI thumbnails.
Localize video content for international markets with transcript extraction, translation, dubbing, and localized thumbnails.
TikTok, YouTube, Instagram, X, and Facebook are all covered. Each platform has its own transcript skill, so you can paste the matching video URL directly.
No. The output is plain text only, which makes it easier to copy into research notes, scripts, or content drafts without cleaning up timecodes.
YouTube is usually fastest because it can use pre-generated captions. The other platforms rely on AI transcription, so they may take a bit longer.
Use the full video URL with `https://` included. The transcript tools are URL-only and are designed for a single post or video at a time.