channel_details
Retrieve YouTube channel information by providing a channel ID or URL. Get details about channels using the Youtube138 MCP Server.
Instructions
Channel Details
Query Parameters:
id (Required): Channel ID or URL e.g. UCJ5v_MCY6GNUBTO8-D3XoAg e.g. https://www.youtube.com/@WWE
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 | Channel ID or URL e.g. UCJ5v_MCY6GNUBTO8-D3XoAg e.g. https://www.youtube.com/@WWE | |
| 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": "Channel ID or URL e.g. UCJ5v_MCY6GNUBTO8-D3XoAg e.g. https://www.youtube.com/@WWE",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}