youtube.channel_search
ActiveTool of Vee3
Search public videos on a YouTube channel by keyword or phrase. Accepts a bare channel id (for example UCJ5v_MCY6GNUBTO8-D3XoAg), not a URL. Returns matching video entries and cursorNext for pagination. Use cursorNext from a prior response as cursor for the next page. Cost = 10 tokens.
Parameters schema
{
"type": "object",
"title": "search_youtube_channelArguments",
"required": [
"channel_id",
"query"
],
"properties": {
"query": {
"type": "string",
"title": "Query",
"maxLength": 512,
"description": "Search keywords or phrase within the channel."
},
"cursor": {
"anyOf": [
{
"type": "string",
"maxLength": 4096
},
{
"type": "null"
}
],
"title": "Cursor",
"default": null,
"description": "Pagination cursor from cursorNext."
},
"channel_id": {
"type": "string",
"title": "Channel Id",
"maxLength": 24,
"description": "YouTube channel id (for example UCJ5v_MCY6GNUBTO8-D3XoAg, not a URL)."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries