VOOZH about

URL: https://apify.com/transcriptdev/youtube-transcript-api

โ‡ฑ Youtube Transcript API ยท Apify


Pricing

from $10.00 / 1,000 transcripts

Go to Apify Store

Youtube Transcript API

YouTubeTranscript.dev turns YouTube videos into text. It uses captions in 100+ languages and AI transcription when captions are missing. Supports single videos and batches, TXT/SRT/VTT/JSON export, translation, and a REST API.

Pricing

from $10.00 / 1,000 transcripts

Rating

0.0

(0)

Developer

๐Ÿ‘ Youtube Transcript Dev

Youtube Transcript Dev

Maintained by Community

Actor stats

0

Bookmarked

23

Total users

4

Monthly active users

3 months ago

Last modified

Share

YouTubeTranscript.dev - YouTube Transcript API

Real-time API for extracting YouTube transcripts and captions. Supports 100+ languages, batch processing, timestamped segments, and word-level timing. Proxies to the YouTubeTranscript.dev backend.

Standby Mode Endpoints

This Actor runs in Standby mode โ€” use it like a real-time API. No need to click Start; just send HTTP requests to the Actor hostname.

EndpointMethodDescription
/GETHealth check. Returns service status.
/transcribePOSTTranscribe a single YouTube video
/batchPOSTTranscribe multiple videos (batch)
/batch/{batch_id}GETPoll batch status (when POST /batch returns processing)

Authentication

Include your Apify API token in one of two ways:

  1. Query parameter: ?token=YOUR_APIFY_TOKEN
  2. Authorization header (recommended): Authorization: Bearer YOUR_APIFY_TOKEN

Request Examples

Single video (cURL)

curl-X POST "https://YOUR_ACTOR.apify.actor/transcribe?token=YOUR_APIFY_TOKEN"\
-H"Content-Type: application/json"\
-d'{"video":"dQw4w9WgXcQ","language":"en"}'

Single video (JavaScript)

const response =awaitfetch('https://YOUR_ACTOR.apify.actor/transcribe',{
method:'POST',
headers:{
'Content-Type':'application/json',
'Authorization':`Bearer ${process.env.APIFY_TOKEN}`,
},
body:JSON.stringify({
video:'dQw4w9WgXcQ',
language:'en',
format:{timestamp:true},
}),
});
const data =await response.json();
console.log(data.data.transcript.text);

Single video (Python)

import requests
response = requests.post(
'https://YOUR_ACTOR.apify.actor/transcribe',
headers={
'Content-Type':'application/json',
'Authorization':f'Bearer {os.environ["APIFY_TOKEN"]}',
},
json={'video':'dQw4w9WgXcQ','language':'en'},
)
data = response.json()
print(data['data']['transcript']['text'])

Batch (cURL)

curl-X POST "https://YOUR_ACTOR.apify.actor/batch?token=YOUR_APIFY_TOKEN"\
-H"Content-Type: application/json"\
-d'{"video_ids":["dQw4w9WgXcQ","jNQXAC9IVRw"],"language":"en"}'

When POST /batch returns status: "processing", poll until completed:

$curl-X GET "https://YOUR_ACTOR.apify.actor/batch/BATCH_ID?token=YOUR_APIFY_TOKEN"

Request Body

POST /transcribe

FieldTypeRequiredDescription
videostringYesYouTube URL or 11-character video ID
languagestringNoPreferred language code (e.g. en, es). Default: en
sourcestringNoauto (auto-generated) or manual (creator-provided). Default: auto
formatobjectNo{ timestamp: true, paragraphs: true, words: true }

POST /batch

FieldTypeRequiredDescription
video_idsarrayYesArray of video URLs or IDs (max 100)
languagestringNoPreferred language code
sourcestringNoauto or manual
formatobjectNoOutput format options

Response

Successful responses return JSON with:

  • request_id / batch_id โ€” Request identifier
  • status โ€” completed, partial, processing, or failed (for batch: poll GET /batch/{batch_id} when processing)
  • data โ€” Transcript with text, language, source, optional segments, paragraphs, words
  • credits_used โ€” Credits consumed

Pricing

This Actor uses pay-per-event pricing on Apify. You are charged per successfully processed transcript. Check the Apify Store for the current event price.

FAQ

Which videos are supported?
Public YouTube videos with captions (manual or auto-generated). Private, unlisted, or age-restricted videos are not supported.

What if a video has no captions?
The API returns 404 with "No captions available for this video." If you run the actor from the Apify UI with input, the run completes and stores that error in the dataset instead of crashing.

Which languages are supported?
All languages available on YouTube (100+). Set the language parameter to any ISO 639-1 code (e.g. en, es, de, ja, ko).

Is ASR (audio transcription) available?
No. This Actor supports captions only. Videos without captions cannot be transcribed.

You might also like

YouTube Transcript & Captions Scraper

benthepythondev/youtube-transcript-scraper

Extract transcripts from any YouTube video with captions. Supports 100+ languages, auto-generated captions, and translation. Output as plain text, SRT, VTT, or JSON with timestamps. Includes video metadata (title, channel, views). Perfect for content repurposing and AI training.

Youtube Transcript Scraper

yasmany.casanova/youtube-transcript-scraper

Extract transcripts and subtitles from YouTube videos, channels, and playlists. Supports multiple languages, auto-generated captions, translation, batch processing, and 5 export formats (JSON, SRT, VTT). No API key required.

๐Ÿ‘ User avatar

Yasmany Grijalba Casanova

35

YouTube Transcript Scraper

taroyamada/youtube-transcript-bulk-api

Extract YouTube captions, timestamps, SRT, VTT, and plain text from public videos in bulk without browser automation.

YouTube Transcript Scraper

akash9078/youtube-transcript-scraper

YouTube Transcript Scraper & Extractor API โ€” Extract transcripts, captions & subtitles from YouTube videos, Shorts & VODs without an API key. Supports auto-generated and manual captions in 100+ languages with translation, batch extraction & clean JSON for AI agents, RAG, SEO & automation.

๐Ÿ‘ User avatar

Akash Kumar Naik

953

4.8

YouTube Transcript Scraper (Multiple Language)

dead00/youtube-transcript-scraper-multiple-language

A powerful actor that extracts transcripts/captions from YouTube videos with built-in translation support for 100+ languages.

Youtube Video Subtitles Scraper

simpleapi/youtube-video-subtitles-scraper

YouTube Video Subtitles Scraper extracts captions and subtitle tracks from YouTube videos in multiple languages. Returns timed transcripts, language codes, and download formats (SRT, VTT, TXT). Ideal for accessibility, translation, research, SEO, and automating transcript content analysis workflows

YouTube Transcript with Translation (VidScribe)

kelvinosse/youtube-transcript-with-translation

Extract subtitles & captions from any YouTube video in seconds. Supports auto-generated and manual captions in 150+ languages. Optionally translate transcripts into 30 languages using AI. Output as JSON, plain text, or SRT subtitle files.

YouTube Transcript Scraper โ€“ JSON, SRT, VTT, Plain Text

scraperhive/youtube-transcript-scraper

Extract YouTube video transcripts, subtitles, and captions in multiple formats with precise timestamps. Plain Text ยท JSON ยท SRT ยท WebVTT ยท 20+ Languages ยท Batch Processing ยท Auto + Manual Captions

71

5.0