Skip to main content
GET
/
v1
/
transcript
Get transcript from any supported video URL
curl --request GET \
  --url https://api.urltodata.ai/v1/transcript \
  --header 'Authorization: Bearer <token>'
{
  "content": "<string>",
  "lang": "<string>",
  "availableLangs": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.urltodata.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:your-api-key
required

API key as Bearer token (e.g. Bearer mp_abc123_secret)

Query Parameters

url
string<uri>
required

Video URL

lang
string

Language code

text
boolean

Return plain text instead of chunks

chunkSize
integer

Max chars per chunk (50-10000)

Required range: 50 <= x <= 10000
mode
enum<string>
default:auto

Transcript retrieval mode

Available options:
native,
auto,
generate

Response

Transcript (sync)

content
lang
string
availableLangs
string[]