channel_community
Retrieve community posts and discussions from YouTube channels using Channel ID and cursor tokens for pagination.
Instructions
Channel Community
Query Parameters:
id: Channel ID
cursor: Cursor token
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Channel ID | |
| cursor | No | Cursor token |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Cursor token",
"type": "string"
},
"id": {
"description": "Channel ID",
"type": "string"
}
},
"required": [],
"type": "object"
}