Endpoint Playground
Test Crawlora's YouTube Transcript API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/youtube/transcript/<id>?format=json" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | YouTube video ID (11-character code) | |
| lang | string | No | Preferred transcript language | |
| translate_to | string | No | Translate transcript to this language code | |
| format | string | No | json | Response format |
| timestamps | boolean | No | Include timestamps in the JSON response |
{
"code": 200,
"msg": "OK",
"data": {
"video_id": "dQw4w9WgXcQ",
"language": "English",
"language_code": "en",
"segments": [
{
"text": "Never gonna give you up",
"start": 12.34,
"duration": 2.11
}
],
"text": "Never gonna give you up"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns transcript segments for a YouTube video using YouTube's native player captions. Set `format=text`, `format=srt`, or `format=vtt` to receive plain-text output instead of the standard response envelope. Returns `404` when the video currently has no transcript/captions available in any language — this is a normal, non-retryable result, not an error condition. Returns `503` when the request is temporarily blocked or rate-limited; retrying after a short delay may succeed.
{
"code": 200,
"msg": "OK",
"data": {
"video_id": "dQw4w9WgXcQ",
"language": "English",
"language_code": "en",
"segments": [
{
"text": "Never gonna give you up",
"start": 12.34,
"duration": 2.11
}
],
"text": "Never gonna give you up"
}
}curl "https://api.crawlora.net/api/v1/youtube/transcript/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"