Playground

Retrieve playlist metadata and items API playground

Returns playlist metadata, normalized video items, and an optional continuation token for pagination.

GETapiKey3 credits/requestyoutube.playlistResponseDoc

Selected endpoint

GET /youtube/playlist/{id}

Returns playlist metadata, normalized video items, and an optional continuation token for pagination.

Group
YouTube
Authentication
apiKey
Credit cost
3 credits/request
Path parameters
1
Query parameters
1
Body parameters
0
GETapiKey3 credits/requestplaylistResponseDoc

Retrieve playlist metadata and items

Returns playlist metadata, normalized video items, and an optional continuation token for pagination.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key

Path parameters

Query parameters

Request URL will appear here.

Request headers will appear here.

Request body preview will appear here when applicable.

Status, latency, response headers, and response body will appear after a 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"
  }
}