get_channel_videos
m.youtube.comRetrieves every video available on a YouTube channel from https://m.youtube.com, auto-paginating all pages. Returns each video's ID, title, URL, and non-empty metadata together with channel details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_channel_videos?
Retrieves every video available on a YouTube channel from https://m.youtube.com, auto-paginating all pages. Returns each video's ID, title, URL, and non-empty metadata together with channel details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass handle and get the result back without maintaining a scraper.
Response
{
"videos": [
{
"url": "<string>",
"title": "<string>",
"metadata": {},
"video_id": "<string>"
}
],
"channel": {
"url": "<string>",
"title": "<string>",
"handle": "<string>",
"metadata": {},
"channel_id": "<string>"
},
"total_videos": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ccc38444-fa46-4549-9b82-87ffe89cd0bf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ccc38444-fa46-4549-9b82-87ffe89cd0bf",
"variables": {
"handle": "Mindplicit"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="ccc38444-fa46-4549-9b82-87ffe89cd0bf") — the "get_channel_videos" function, which retrieves every video available on a YouTube channel from https://m.youtube.com, auto-paginating all pages. Returns each video's ID, title, URL, and non-empty metadata together with channel details.. It takes handle (str). Return the result as structured JSON.