get_related_videos
Discover related YouTube videos by entering a specific video ID. Retrieve up to a defined number of suggestions to enhance content discovery and analysis.
Instructions
Get videos related to a specific YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
video_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"title": "Max Results"
},
"video_id": {
"title": "Video Id",
"type": "string"
}
},
"required": [
"video_id"
],
"title": "get_related_videosArguments",
"type": "object"
}