youtube.video_comments
ActiveTool of Vee3
Fetch top-level comments for a public YouTube video by its 11-character video id. Returns comment text, author summary, vote and reply counts, pinned status, total comment count, and cursorNext for the next page. Use sort_by to choose comment order: - sort_by: Top comments, Newest first Sort values are matched case-insensitively. Use cursor with the same video_id to paginate: pass cursorNext from a prior response. sort_by and cursor cannot be combined. Cost = 15 tokens.
Parameters schema
{
"type": "object",
"title": "get_youtube_video_commentsArguments",
"required": [
"video_id"
],
"properties": {
"cursor": {
"anyOf": [
{
"type": "string",
"maxLength": 4096
},
{
"type": "null"
}
],
"title": "Cursor",
"default": null,
"description": "Pagination cursor from a previous response cursorNext field."
},
"sort_by": {
"anyOf": [
{
"type": "string",
"maxLength": 128
},
{
"type": "null"
}
],
"title": "Sort By",
"default": null,
"description": "Comment sort order. One of: Top comments, Newest first."
},
"video_id": {
"type": "string",
"title": "Video Id",
"maxLength": 11,
"description": "YouTube video id (11 characters, not a URL)."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries