Rumble Channel Videos API
Rumble channel uploads — lean streams[{url,type}]; call video-details for rendition meta.
GET request to /v1/rumble/channel-videos that responds with clean JSON and costs ~12 credits (0.6/result). Pass cache=true for a free 24h cache hit; default is always fresh. Start with 100 free credits — no credit card.What is the Rumble Channel Videos API?
List a channel's uploads as clean JSON. Each row: id, url, type (video|short|live), title, channel/channelUrl/channelHandle, views/likes/dislikes/comments, durationSeconds + durationText (same pair as video-details), publishedAt, thumbnail, streams[{url,type}] — unsigned playback URLs that do not expire, so no expiresAt key. Per-rendition quality/height/bitrate/sizeBytes require /v1/rumble/video-details — the channel scrape does not ship that metadata. shareUrl. embedUrl/embedId are present only when Rumble exposes a distinct embed id — page permalink ids are never used to invent /embed/{id}/ URLs (those 404). Flat ~0.6 credits per returned video (min 2).
What you get
- Bulk list of channel videos with metadata
- Dates, URLs, and engagement fields when available
- Configurable result limit
- Ideal for monitoring and content pipelines
Try it
Fill in the parameters below and copy a ready-to-run request, or open the live Playground to run it against your account (no API key paste).
Parameters
curl "https://api.captapi.com/v1/rumble/channel-videos?url=https%3A%2F%2Frumble.com%2Fc%2FBongino" \
-H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."Edit the parameters and the code updates instantly. Switch languages and hit copy.
Example response
{
"success": true,
"data": {
"channel": "Bongino",
"totalReturned": 5,
"videos": [
{
"platform": "rumble",
"id": "v7dfegc",
"url": "https://rumble.com/v7dfegc-the-democrat-civil-war-is-getting-intense-ep.-2563-07292026.html",
"type": "video",
"title": "The Democrat Civil War Is Getting Intense (Ep. 2563) - 07/29/2026",
"channel": "The Dan Bongino Show",
"channelUrl": "https://rumble.com/c/bongino",
"channelHandle": "bongino",
"channelFollowers": 3661298,
"channelVerified": true,
"views": 230174,
"likes": 4178,
"dislikes": 43,
"durationSeconds": 5456,
"durationText": "1:30:56",
"publishedAt": "2026-07-29T12:29:52+00:00",
"thumbnail": "https://1a-1791.com/video/fwe2/83/s8/1/S/_/P/K/S_PKA.OvCc-small-The-Democrat-Civil-War-Is-G..jpg",
"comments": 91,
"isLive": false,
"streams": [
{
"url": "https://rumble.com/live-hls-dvr/BE4yqeSGJMg/playlist.m3u8",
"type": "hls",
"quality": "auto"
}
],
"shareUrl": "https://rumble.com/share/v7dfegc"
},
{
"platform": "rumble",
"id": "v7det4g",
"url": "https://rumble.com/shorts/v7det4g",
"type": "short",
"title": "Just Wait Until You Read TRUMP’S Diary...",
"channel": "The Dan Bongino Show",
"channelUrl": "https://rumble.com/c/bongino",
"channelHandle": "bongino",
"channelFollowers": 3661298,
"channelVerified": true,
"views": 8242,
"likes": 234,
"dislikes": 7,
"durationSeconds": 55,
"durationText": "0:55",
"publishedAt": "2026-07-29T02:21:55+00:00",
"thumbnail": "https://1a-1791.com/video/fwe2/b4/s8/1/W/p/J/K/WpJKA.OvCc-small-Just-Wait-Until-You-Read-TR..jpg",
"comments": 11,
"isLive": false,
"streams": [
{
"url": "https://1a-1791.com/video/fwe2/b4/s8/2/W/p/J/K/WpJKA.haa.mp4?b=1&u=6",
"type": "mp4",
"quality": "1080p"
},
{
"url": "https://1a-1791.com/video/fwe2/b4/s8/2/W/p/J/K/WpJKA.gaa.mp4?b=1&u=6",
"type": "mp4",
"quality": "720p"
}
],
"shareUrl": "https://rumble.com/share/v7det4g"
}
]
}
}Billing metadata is returned in response headers: X-Captapi-Credits (credits charged), X-Captapi-Cache (hit or miss), and X-Captapi-Source. Failed requests (4xx/5xx) are never charged. See the full list of error codes in the error reference.
Response structure
A successful call returns success, cached, creditsUsed, and a data object with the following fields:
Top-level fields
channelTop-level: channel slug you queried. Per-video channel is the display name string.totalReturnedNumber of items returned in this response.
Videos
Each item in videos contains:
platformPlatform identifier for this response (matches the endpoint's platform).idStable platform ID for the item.urlCanonical URL of the item.typeContent kind: "video" | "short" | "live" (from /shorts/ URL or isLive).titleTitle of the item.channelTop-level: channel slug you queried. Per-video channel is the display name string.channelUrlURL of the channel.channelHandleChannel handle. Example: "bongino".channelFollowersFollower count of the channel.channelVerifiedWhether the channel is verified.viewsView count for the upload.likesUpvotes when the channel scrape exposes rumbleVotes; null when unknown.dislikesDislike count.durationSecondsLength in seconds (integer). Same pair as video-details.durationTextHuman clock duration (e.g. 1:30:56).publishedAtPublish date (ISO 8601) when the platform exposes an absolute timestamp.thumbnailThumbnail image URL.commentsComment count.isLiveAlways present. true only when upstream marks the row live; false otherwise (including fresh VODs with 0 views — not omitted).streamsLean signed playback rows ({url, type, expiresAt}). expiresAt comes from the JWT exp claim. For quality/height/bitrate/sizeBytes call /v1/rumble/video-details.shareUrlShare url URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | Rumble channel URL, e.g. https://rumble.com/c/name. The URL platform must match this endpoint's platform. Do not pass cross-platform URLs, e.g. YouTube to TikTok, Instagram to Facebook, LinkedIn to X/Twitter, or Pinterest to Rumble. |
| limit | integer | No | Max items to return (default 20, max 200). Billed per result. |
| cache | boolean | No | Set true to serve from the 24h response cache (0 credits on hit). Default false — always fetch fresh. Envelope includes cached + cachedAt on hits. |
Authentication: send your key as Authorization: Bearer capt_live_.... A typical call costs ~12 credits (0.6/result) — billed per result, so the exact amount scales with how many items you request. Pass cache=true for a free 24h cache hit; default is always fresh (metrics refresh within ~1 hour).
rumble_channel_videos via @captapi/mcp. Set it up →How it works
- 1. Sign up — get 100 free credits, no card required.
- 2. Create a key from your dashboard.
- 3. Send one request to
/v1/rumble/channel-videosand parse the JSON response.
Use cases
Content Pipelines
Ingest a channel's catalog in bulk.
Monitoring
Detect new uploads automatically.
Archiving
Snapshot a creator's library — metadata plus CDN media URLs (re-fetch before mediaUrlsExpireAt).
Analytics
Aggregate performance across many videos.
Frequently asked questions
What does the Rumble Channel Videos API do?+
The Rumble Channel Videos API lets you list items in bulk with metadata from a public Rumble video using one GET request to /v1/rumble/channel-videos. It returns clean JSON — no OAuth or infrastructure setup required.
How many credits does the Rumble Channel Videos API cost?+
At the default limit this endpoint costs 12 credits (0.6 per result). Billing scales with how many results you request. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Failed or empty results are never charged.
Do I need a Rumble API key or OAuth?+
No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. We handle proxies, rate limits, retries, and authentication for you.
Is the Rumble Channel Videos API suitable for production use?+
Yes. It is a stable REST endpoint with predictable JSON and automatic retries. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Use it for analytics, monitoring, and content automation.
More Rumble APIs
Ready to use the Rumble Channel Videos API?
Sign up, grab your key, and make your first call in 60 seconds.