Get Playlist Details
youtube_get_playlistRetrieve full details of a YouTube playlist by its ID, including title, description, privacy status, and item count.
Instructions
Fetch full details for a single playlist by its ID.
Args
playlistId(string, required): The YouTube playlist ID (e.g.PLrEnWoR732-B...).response_format("markdown" | "json", default "markdown"): Output format.
Returns JSON shape:
{
"id": "PL...",
"title": "My Playlist",
"description": "...",
"privacyStatus": "public",
"itemCount": 12,
"publishedAt": "2024-01-01T00:00:00Z",
"defaultLanguage": "en",
"channelId": "UC...",
"channelTitle": "My Channel"
}Examples
youtube_get_playlist({ playlistId: "PLrEnWoR732-B..." })
Errors
404 → playlist not found or not accessible.
403 → insufficient permission.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| playlistId | Yes | The YouTube playlist ID to retrieve. | |
| response_format | No | Output format: "markdown" (default) or "json". | markdown |