Live
list_channel_videos
youtube.comReturns public channel videos from https://www.youtube.com with video IDs, titles, watch URLs, rendered view counts, relative publish times, sorting, and pagination.
Parameters3
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 list_channel_videos?
Returns public channel videos from https://www.youtube.com with video IDs, titles, watch URLs, rendered view counts, relative publish times, sorting, and pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass channel, limit, sort and get the result back without maintaining a scraper.
Response
{
"sort": "<string>",
"videos": [
{
"title": "<string>",
"duration": "<string>",
"video_id": "<string>",
"published": "<string>",
"watch_url": "<string>",
"view_count": "<string>",
"thumbnail_url": "<string>"
}
],
"channel_url": "<string>",
"returned_count": 0,
"requested_limit": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/e8a2e861-fcc3-4fd1-83fa-f21c8ae31aef/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e8a2e861-fcc3-4fd1-83fa-f21c8ae31aef",
"variables": {
"channel": "@SuccessionBio",
"limit": 20,
"sort": "latest"
}
}'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="e8a2e861-fcc3-4fd1-83fa-f21c8ae31aef") — the "list_channel_videos" function, which returns public channel videos from https://www.youtube.com with video IDs, titles, watch URLs, rendered view counts, relative publish times, sorting, and pagination.. It takes channel (str), limit (int), sort (str). Return the result as structured JSON.