playlist_details
Retrieve YouTube playlist information including videos, metadata, and details using the playlist ID through the Youtube138 MCP Server.
Instructions
Playlist Details
Query Parameters:
id (Required): Playlist ID
hl: Example value: en
gl: Example value: US
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Playlist ID | |
| hl | No | Example value: en | |
| gl | No | Example value: US |
Input Schema (JSON Schema)
{
"properties": {
"gl": {
"description": "Example value: US",
"type": "string"
},
"hl": {
"description": "Example value: en",
"type": "string"
},
"id": {
"description": "Playlist ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}