Endpoint Playground
Test Crawlora's Retrieve playlist metadata and items 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/playlist/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | YouTube playlist ID or full playlist URL | |
| continuation_token | string | No | Pagination token returned by a previous request |
{
"code": 200,
"msg": "OK",
"data": {
"playlist_id": "PL1234567890abcdef",
"title": "OpenAI Podcast",
"url": "https://www.youtube.com/playlist?list=PL1234567890abcdef",
"channel_title": "OpenAI",
"channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
"video_count": "12 videos",
"items": [
{
"type": "video",
"position": 1,
"title": "Episode 1",
"video_id": "abc123xyz89",
"duration": "12:34"
}
],
"continuation_token": "NEXT_TOKEN"
}
}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 playlist metadata, normalized video items, and an optional continuation token for pagination.
{
"code": 200,
"msg": "OK",
"data": {
"playlist_id": "PL1234567890abcdef",
"title": "OpenAI Podcast",
"url": "https://www.youtube.com/playlist?list=PL1234567890abcdef",
"channel_title": "OpenAI",
"channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
"video_count": "12 videos",
"items": [
{
"type": "video",
"position": 1,
"title": "Episode 1",
"video_id": "abc123xyz89",
"duration": "12:34"
}
],
"continuation_token": "NEXT_TOKEN"
}
}curl "https://api.crawlora.net/api/v1/youtube/playlist/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"