Live
get_channel_live_status
youtube.comChecks a public channel on https://www.youtube.com for an active live stream and returns its title, watch URL, rendered viewer count, and thumbnail.
Parameters1
Runs4
Updated1d ago
Operational4 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 get_channel_live_status?
Checks a public channel on https://www.youtube.com for an active live stream and returns its title, watch URL, rendered viewer count, and thumbnail. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass channel and get the result back without maintaining a scraper.
Response
{
"stream": {
"title": "<string>",
"video_id": "<string>",
"watch_url": "<string>",
"viewer_count": "<string>",
"thumbnail_url": "<string>"
},
"is_live": true,
"channel_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/b7632c6a-6b2e-4628-b77b-d71c1c92b664/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b7632c6a-6b2e-4628-b77b-d71c1c92b664",
"variables": {
"channel": "@SuccessionBio"
}
}'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="b7632c6a-6b2e-4628-b77b-d71c1c92b664") — the "get_channel_live_status" function, which checks a public channel on https://www.youtube.com for an active live stream and returns its title, watch URL, rendered viewer count, and thumbnail.. It takes channel (str). Return the result as structured JSON.