Live
search_channels
youtube.comSearches YouTube channels by topic and returns public channel metadata, full About descriptions, external links, and publicly visible contact emails from https://www.youtube.com.
Parameters2
Runs5
Updated1d ago
Operational5 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_channels?
Searches YouTube channels by topic and returns public channel metadata, full About descriptions, external links, and publicly visible contact emails from https://www.youtube.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"channels": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/9ffd22bd-c5f2-4c2a-a263-4a6200c6a6ff/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9ffd22bd-c5f2-4c2a-a263-4a6200c6a6ff",
"variables": {
"query": "biotech sales",
"limit": 5
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="9ffd22bd-c5f2-4c2a-a263-4a6200c6a6ff") — the "search_channels" function, which searches YouTube channels by topic and returns public channel metadata, full About descriptions, external links, and publicly visible contact emails from https://www.youtube.com.. It takes query (str), limit (int). Return the result as structured JSON.