playlists_getPlaylistItems
Retrieve video items from a YouTube playlist by specifying the playlist ID. Use this tool to gather playlist content details, supporting structured data retrieval for analysis or integration purposes.
Instructions
Get videos in a YouTube playlist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Maximum number of results to return | |
playlistId | Yes | The YouTube playlist ID |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"description": "Maximum number of results to return",
"type": "number"
},
"playlistId": {
"description": "The YouTube playlist ID",
"type": "string"
}
},
"required": [
"playlistId"
],
"type": "object"
}