community_post_comments
Retrieve comments from YouTube community posts using cursor tokens to access threaded discussions and user feedback.
Instructions
Community Post Comments
Query Parameters:
cursor (Required): Cursor token You can get it from the Community Post Details endpoint.
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | Yes | Cursor token You can get it from the Community Post Details endpoint. |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Cursor token You can get it from the Community Post Details endpoint.",
"type": "string"
}
},
"required": [
"cursor"
],
"type": "object"
}