YouTube Channel videos API
List a channel’s uploads by handle or channelId with cursor pagination: title, views, length and publish time.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"found": true,
"data": {
"nextCursor": "4qmFsgLlFhIYV",
"videos": [
{
"id": "5EWaxmWgQMI",
"url": "https://www.youtube.com/watch?v=5EWaxmWgQMI",
"title": "The cheapest flagship phone, reviewed",
"views": 4120000,
"lengthText": "12:48",
"publishedTime": "2 weeks ago"
}
]
}
}interface YoutubeChannelVideosResponse {
data: {
nextCursor: string | null;
videos: {
createdUtc?: number;
id: string;
image?: string;
lengthText: string;
publishedTime: string;
title: string;
url: string;
views: number;
}[];
} | null;
found: boolean;
reason?: "not_found";
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-20 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/youtube.channel_videos \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"handle":"@mkbhd"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| channelId | string | YouTube channel ID. |
| cursor | string | Continuation token from a previous response for pagination. |
| handle | string | "@mkbhd"YouTube channel handle. |
| sort | enum | Sort order. |
| Response | ||
| found | boolean | true |
| data | object | |
| data.nextCursor | string | "4qmFsgLlFhIYV" |
| data.videos | array | |
| data.videos[].id | string | "5EWaxmWgQMI" |
| data.videos[].url | string | "https://www.youtube.com/watch?v=5EWaxmWgQMI" |
| data.videos[].title | string | "The cheapest flagship phone, reviewed" |
| data.videos[].views | number | 4120000 |
| data.videos[].lengthText | string | "12:48" |
| data.videos[].publishedTime | string | "2 weeks ago" |
| Price | ||
| Price per request | USD | $0.0005 |
| Price /1k req | USD | $0.50 |
FAQ
About the YouTube Channel videos API
The AnyAPI YouTube Channel videos API returns YouTube channel videos data as normalized JSON from one POST call to /v1/run/youtube.channel_videos. List a channel’s uploads by handle or channelId with cursor pagination: title, views, length and publish time. AnyAPI routes each request across 3 sources and falls back automatically when one fails. It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 99.6% of YouTube channel videos calls through AnyAPI succeeded, with a median response time of 4.1 seconds across 805 measured calls.