Endpoint Playground
Test Crawlora's YouTube Captions 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/captions/dQw4w9WgXcQ?lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | dQw4w9WgXcQ | YouTube video ID (11-character code) |
| lang | string | No | en | Caption language code (ISO 639-1), defaults to **en** |
{
"code": 200,
"msg": "OK",
"data": [
{
"text": "Andrew Mayne: Welcome to the OpenAI podcast.",
"start": 0.399,
"duration": 1.921
}
]
}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 the caption cues for a specific YouTube video.
{
"code": 200,
"msg": "OK",
"data": [
{
"text": "Andrew Mayne: Welcome to the OpenAI podcast.",
"start": 0.399,
"duration": 1.921
}
]
}curl "https://api.crawlora.net/api/v1/youtube/captions/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"