playlist_videos
Retrieve videos from a YouTube playlist by providing the playlist ID, with optional pagination and localization parameters.
Instructions
Playlist Videos
Query Parameters:
id: Playlist ID
cursor: Cursor token
hl: Example value: en
gl: Example value: US
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Playlist ID | |
| cursor | No | Cursor token | |
| hl | No | Example value: en | |
| gl | No | Example value: US |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Cursor token",
"type": "string"
},
"gl": {
"description": "Example value: US",
"type": "string"
},
"hl": {
"description": "Example value: en",
"type": "string"
},
"id": {
"description": "Playlist ID",
"type": "string"
}
},
"required": [],
"type": "object"
}