get_trending_videos
Find trending YouTube videos by category and region to discover popular content relevant to specific interests and locations.
Instructions
Discover trending videos in different categories and regions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Category ID or name (e.g., "Technology", "Education") | |
| maxResults | No | Maximum number of trending videos to return | |
| region | No | Region code for trending videos | US |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category ID or name (e.g., \"Technology\", \"Education\")",
"type": "string"
},
"maxResults": {
"default": 25,
"description": "Maximum number of trending videos to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"region": {
"default": "US",
"description": "Region code for trending videos",
"type": "string"
}
},
"type": "object"
}