Tools

Transcripts

Extract transcripts and captions from YouTube videos

Get YouTube video transcript

Extract transcript/captions from a YouTube video.

Rate Limits: Build (50/day), Accelerate (500/day), Unlimited (unlimited)

GET
/v1/tools/youtube/transcript
AuthorizationBearer <token>

API key authentication - use your Late API key as a Bearer token

In: header

Query Parameters

urlstring

YouTube video URL or video ID

lang?string

Language code for transcript

Default"en"

Response Body

application/json

curl -X GET "https://getlate.dev/api/v1/tools/youtube/transcript?url=string"
{
  "success": true,
  "videoId": "string",
  "language": "string",
  "fullText": "string",
  "segments": [
    {
      "text": "string",
      "start": 0,
      "duration": 0
    }
  ]
}
Empty