channel_channels
Retrieve YouTube channel collections and subscriptions by providing a channel ID and filter options to organize content access.
Instructions
Channel Channels
Query Parameters:
id: Channel ID
filter: Filter key or token, default: all_collections Keys you can enter: all_collections: Returns channel collections subscriptions: Returns subscribed channels or custom collection token
cursor: Example value:
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 | Channel ID | |
| filter | No | Filter key or token, default: all_collections Keys you can enter: all_collections: Returns channel collections subscriptions: Returns subscribed channels or custom collection token | |
| cursor | No | Example value: | |
| hl | No | Example value: en | |
| gl | No | Example value: US |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Example value: ",
"type": "string"
},
"filter": {
"description": "Filter key or token, default: all_collections Keys you can enter: all_collections: Returns channel collections subscriptions: Returns subscribed channels or custom collection token",
"type": "string"
},
"gl": {
"description": "Example value: US",
"type": "string"
},
"hl": {
"description": "Example value: en",
"type": "string"
},
"id": {
"description": "Channel ID",
"type": "string"
}
},
"required": [],
"type": "object"
}