get_video_comments
Extract and organize comments from any YouTube video using video ID. Specify order, max results, and include replies for tailored analysis or engagement tracking.
Instructions
Get comments for a YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_replies | No | ||
max_results | No | ||
order | No | relevance | |
page_token | No | ||
video_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_replies": {
"default": false,
"title": "Include Replies",
"type": "boolean"
},
"max_results": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 20,
"title": "Max Results"
},
"order": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "relevance",
"title": "Order"
},
"page_token": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Page Token"
},
"video_id": {
"title": "Video Id",
"type": "string"
}
},
"required": [
"video_id"
],
"title": "get_video_commentsArguments",
"type": "object"
}