Public Playground
Preview the endpoint before sending a live request
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.
Playground
Retrieve the playlists tab for a YouTube channel API Playground
Returns normalized playlist items from a channel's Playlists tab and an optional continuation token.
GETapiKey3 credits/requestyoutube.channelFeedResponseDocYouTube
Endpoint details
Returns normalized playlist items from a channel's Playlists tab and an optional continuation token.
- Method
- GET
- Path
- /youtube/channel/{id}/playlists
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- YouTube
- Parameters
- 3 documented fields
Request parameters
id:pathcontinuation_token:queryx-api-key:header
Response schema fields
codedatadata.channel_iddata.channel_titledata.channel_urldata.continuation_tokendata.handledata.itemsdata.items[].badgesdata.items[].channel_iddata.items[].channel_thumbnaildata.items[].channel_title
Sample response summary
{
"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 example
curl "https://api.crawlora.net/api/v1/youtube/channel/<id>/playlists" \
-H "x-api-key: <api-key>"