get_video_details
Retrieve detailed YouTube video information including title, description, statistics, optional transcript, and comments for content analysis and research purposes.
Instructions
Get comprehensive information about a specific YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commentsOrder | No | Sort order for comments | relevance |
includeComments | No | Whether to include video comments | |
includeTranscript | No | Whether to include video transcript | |
maxComments | No | Maximum number of comments to retrieve | |
videoId | Yes | YouTube video ID |
Input Schema (JSON Schema)
{
"properties": {
"commentsOrder": {
"default": "relevance",
"description": "Sort order for comments",
"enum": [
"relevance",
"time"
],
"type": "string"
},
"includeComments": {
"default": true,
"description": "Whether to include video comments",
"type": "boolean"
},
"includeTranscript": {
"default": true,
"description": "Whether to include video transcript",
"type": "boolean"
},
"maxComments": {
"default": 50,
"description": "Maximum number of comments to retrieve",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"videoId": {
"description": "YouTube video ID",
"type": "string"
}
},
"required": [
"videoId"
],
"type": "object"
}