Endpoint Playground
Test Crawlora's YouTube Channel Playlists 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/channel/<id>/playlists" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Channel ID, @handle, /c path, /user path, or full YouTube channel URL | |
| continuation_token | string | No | Pagination token returned by a previous request |
{
"code": 200,
"msg": "OK",
"data": {
"channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
"channel_title": "OpenAI",
"handle": "@OpenAI",
"items": [
{
"type": "playlist",
"position": 1,
"title": "OpenAI Podcast",
"playlist_id": "PL1234567890abcdef",
"video_count": "12 videos"
}
],
"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 normalized playlist items from a channel's Playlists tab and an optional continuation token.
{
"code": 200,
"msg": "OK",
"data": {
"channel_id": "UCXZCJLdBC09xxGZ6gcdrc6A",
"channel_title": "OpenAI",
"handle": "@OpenAI",
"items": [
{
"type": "playlist",
"position": 1,
"title": "OpenAI Podcast",
"playlist_id": "PL1234567890abcdef",
"video_count": "12 videos"
}
],
"continuation_token": "NEXT_TOKEN"
}
}curl "https://api.crawlora.net/api/v1/youtube/channel/<id>/playlists" \
-H "x-api-key: $CRAWLORA_API_KEY"