| File | Date | Author | Commit |
|---|---|---|---|
| .github | 2026-02-11 |
|
[1a7f00] Restructure repo: organize examples by language... |
| docs | 2026-02-11 |
|
[1a7f00] Restructure repo: organize examples by language... |
| examples | 2026-02-11 |
|
[1a7f00] Restructure repo: organize examples by language... |
| skills | 2026-02-17 |
|
[a7c192] Fix SKILL.md to comply with Agent Skills spec (... |
| CONTRIBUTING.md | 2026-02-11 |
|
[c71422] Add files via upload |
| LICENSE | 2026-02-11 |
|
[1a7f00] Restructure repo: organize examples by language... |
| README.md | 2026-02-11 |
|
[e3ec84] Update README.md |
The fastest YouTube transcript API — extract, transcribe, and transform video content at scale.
Website • Full API Docs • Pricing • Quick Start • Examples
Most YouTube transcript tools break when videos don't have captions. We don't. Our API extracts existing captions and transcribes directly from audio using AI speech recognition — covering 100% of YouTube videos.
V2 is the streamlined, user-owned transcript model. It prioritizes fast cache hits, consistent responses, and no surprise translations unless you explicitly request a language.
| Method | Endpoint | Description |
|---|---|---|
POST |
/api/v2/transcribe |
Extract transcript from a single video |
POST |
/api/v2/batch |
Extract transcripts from up to 100 videos |
GET |
/api/v2/jobs/{job_id} |
Check status of an ASR job |
GET |
/api/v2/batch/{batch_id} |
Check status of a batch request |
| Method | Cost | Speed | Notes |
|---|---|---|---|
| Native Captions | 1 credit | 5–10 seconds | Best quality, exact language |
| Translation | 1 credit per 2,500 chars | 5–10 seconds | Only when language is requested |
| ASR (Audio) | 1 credit per 90 seconds | 2–20 minutes | Async via webhook |
Sign up at youtubetranscript.dev and grab your API key from the Dashboard.
curl -X POST https://youtubetranscript.dev/api/v2/transcribe \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"video": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"}'
curl -X POST https://youtubetranscript.dev/api/v2/transcribe \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"video": "dQw4w9WgXcQ",
"language": "es",
"format": "timestamp"
}'
curl -X POST https://youtubetranscript.dev/api/v2/batch \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"video_ids": [
"dQw4w9WgXcQ",
"https://www.youtube.com/watch?v=VIDEO_ID_2",
"VIDEO_ID_3"
]
}'
curl -X POST https://youtubetranscript.dev/api/v2/transcribe \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"video": "VIDEO_ID",
"source": "asr",
"webhook_url": "https://yoursite.com/webhook"
}'
Returns immediately with status: "processing". Results are delivered to your webhook when ready.
| Header | Required | Value |
|---|---|---|
Authorization |
Yes | Bearer YOUR_API_KEY |
Content-Type |
Yes | application/json |
| Field | Required | Description |
|---|---|---|
video |
Yes (single) | YouTube URL or 11-character video ID |
video_ids |
Yes (batch) | Array of IDs or URLs. Up to 100 per request |
language |
No | ISO 639-1 code (e.g., "es", "fr"). Omit to get best available without translation |
source |
No | auto (default), manual, or asr |
format |
No | timestamp, paragraphs, or words |
webhook_url |
No | URL for async delivery. Required for source="asr" |
webhook_url return immediately with status: "processing"| HTTP Status | Error Code | Description |
|---|---|---|
| 400 | invalid_request |
Invalid JSON or missing required fields |
| 400 | invalid_parameter |
Invalid video ID or parameter value |
| 401 | invalid_api_key |
Missing or invalid API key |
| 402 | payment_required |
Insufficient credits |
| 404 | no_captions |
No captions available and ASR not used |
| 429 | rate_limit_exceeded |
Too many requests, check Retry-After |
| 500 | internal_error |
Server error, retry with backoff |
→ Full API Documentation & OpenAPI Spec
npm install youtube-audio-transcript-api
import { YouTubeTranscript } from "youtube-audio-transcript-api";
const yt = new YouTubeTranscript({ apiKey: "your_api_key" });
// Simple — one line
const result = await yt.getTranscript("dQw4w9WgXcQ");
console.log(result.data?.transcript.text);
// With options
const translated = await yt.transcribe({
video: "dQw4w9WgXcQ",
language: "es",
format: { timestamp: true },
});
// Batch — up to 100 videos
const batch = await yt.batch({
video_ids: ["dQw4w9WgXcQ", "jNQXAC9IVRw", "9bZkp7q19f0"],
});
// ASR for videos without captions
const asr = await yt.transcribe({
video: "VIDEO_ID",
source: "asr",
allow_asr: true,
webhook_url: "https://yoursite.com/webhook",
});
import requests
API_KEY = "your_api_key"
# Single video
response = requests.post(
"https://youtubetranscript.dev/api/v2/transcribe",
headers={
"Authorization": f"Bearer {API_KEY}",
"Content-Type": "application/json",
},
json={"video": "dQw4w9WgXcQ"}
)
data = response.json()
for segment in data["data"]["transcript"]:
print(f"[{segment['start']:.1f}s] {segment['text']}")
const response = await fetch("https://youtubetranscript.dev/api/v2/transcribe", {
method: "POST",
headers: {
"Authorization": `Bearer ${API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({ video: "dQw4w9WgXcQ" }),
});
const { data } = await response.json();
console.log(data.transcript.text);
Check the /examples directory for complete, runnable scripts:
| Example | Description |
|---|---|
| Basic Extraction | Extract a single video transcript |
| Batch Processing | Process up to 100 videos at once |
| ASR + Webhook | Transcribe videos without captions |
| Translation | Get transcripts in any language |
| Export Formats | Timestamps, paragraphs, word-level |
| Node.js Basic | Node.js extraction example |
| cURL Examples | Ready-to-run cURL commands |
Feed video transcripts into GPT, Claude, or any LLM. Build RAG systems, knowledge bases, and AI assistants powered by YouTube content.
Turn YouTube videos into blog posts, social media content, newsletters, and more.
Analyze video content at scale — sentiment analysis, topic modeling, trend detection across thousands of videos.
Extract competitor video strategies, generate SEO-optimized content from videos, and analyze trends across your niche.
Transcribe lectures, courses, and tutorials. Make video content searchable and accessible.
Generate accurate captions and subtitles for videos that don't have them, in 100+ languages.
The open-source youtube-transcript-api Python package is a great tool, but it has limitations:
| YouTubeTranscript.dev | youtube-transcript-api | |
|---|---|---|
| Videos without captions | ✅ ASR audio transcription | ❌ Fails |
| Translation | ✅ On-demand, any language | ⚠️ Limited to YouTube's translations |
| Batch processing | ✅ Up to 100 videos/request | ❌ One at a time |
| Caching | ✅ Owned transcripts, 0 credits on re-fetch | ❌ Fetches every time |
| Webhooks | ✅ Async delivery | ❌ Not available |
| Infrastructure | ✅ Managed API, 99.9% uptime | ❌ Self-hosted, you handle rate limits |
| Rate limit handling | ✅ Managed for you | ❌ YouTube blocks you |
This is the public repository for YouTubeTranscript.dev. The API is proprietary, but we use this repo to collect feedback from our developer community.
How you can help:
The code examples and documentation in this repository are licensed under the MIT License.
The YouTubeTranscript.dev API is a proprietary service. See Terms of Service.
Built with ❤️ by YouTubeTranscript.dev
Trusted by 1,000+ developers worldwide