Endpoint Playground
Test Crawlora's Retrieve video metadata & 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/video/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | YouTube video ID (11-char code) |
{
"code": 200,
"msg": "OK",
"data": {
"id": "YbJOTdZBX1g",
"title": "Sam Altman on AGI, GPT-5, and what’s next — the OpenAI Podcast Ep. 1",
"description": "On the first episode of the OpenAI Podcast, Sam Altman joins host Andrew Mayne to talk about the future of AI: from GPT-5 and AGI to Proj...",
"duration_seconds": 2423,
"published_at": "2025-06-18T00:00:00Z",
"channel_title": "OpenAI",
"channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
"views_count": 460176,
"likes_count": 11000,
"comments_count": 1400
}
}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 title, description, stats, and captions for a YouTube video ID.
{
"code": 200,
"msg": "OK",
"data": {
"id": "YbJOTdZBX1g",
"title": "Sam Altman on AGI, GPT-5, and what’s next — the OpenAI Podcast Ep. 1",
"description": "On the first episode of the OpenAI Podcast, Sam Altman joins host Andrew Mayne to talk about the future of AI: from GPT-5 and AGI to Proj...",
"duration_seconds": 2423,
"published_at": "2025-06-18T00:00:00Z",
"channel_title": "OpenAI",
"channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
"views_count": 460176,
"likes_count": 11000,
"comments_count": 1400
}
}curl "https://api.crawlora.net/api/v1/youtube/video/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"