search_channels
Search for YouTube channels using keywords to discover content creators, filter results by relevance or metrics, and retrieve channel statistics for analysis.
Instructions
Find and analyze YouTube channels
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeStats | No | Whether to include channel statistics | |
maxResults | No | Maximum number of channels to return | |
order | No | Sort order for channels | relevance |
query | Yes | Search query for YouTube channels |
Input Schema (JSON Schema)
{
"properties": {
"includeStats": {
"default": true,
"description": "Whether to include channel statistics",
"type": "boolean"
},
"maxResults": {
"default": 10,
"description": "Maximum number of channels to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"order": {
"default": "relevance",
"description": "Sort order for channels",
"enum": [
"relevance",
"date",
"viewCount",
"videoCount"
],
"type": "string"
},
"query": {
"description": "Search query for YouTube channels",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}