How to get Rumble video details
GET request to /v1/rumble/video-details with your input. You get clean JSON back in seconds for 1 credit per call — no OAuth, scraping or platform SDKs. Rumble video metadata — uniform streams[] with rendition meta, captions[], audioStreams.How to get Rumble video details (step by step)
- 1
Get a free API key
Create a free Captapi account (100 credits, no card) and generate an API key from the dashboard.
- 2
Call the Rumble Video Details API
Send an authenticated GET request to /v1/rumble/video-details with your input. No OAuth, no scraping setup.
- 3
Read the JSON response
Parse the clean JSON response. Pass cache=true for a free 24h cache hit; default is always fresh.
Code example
curl "https://api.captapi.com/v1/rumble/video-details?url=https%3A%2F%2Frumble.com%2Fv7cv2cc-now-i-can-finally-talk-about-it-ep.-2555-07172026.html" \
-H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."What the response looks like
{
"success": true,
"data": {
"platform": "rumble",
"id": "v7cv2cc",
"numericId": 441201242,
"embedId": "v7aoh22",
"url": "https://rumble.com/v7cv2cc-now-i-can-finally-talk-about-it-ep.-2555-07172026.html",
"type": "video",
"embedUrl": "https://rumble.com/embed/v7aoh22/",
"shareUrl": "https://rumble.com/share/v7cv2cc?src=pEKvigixSA18kCOHqJfLmJzJ7JBZcpQdtcNMOQ_0_L2s9WPwl09OdA",
"title": "Now I Can Finally Talk About It (Ep. 2555) - 07/17/2026",
"description": "In this episode, I'll discuss the groundbreaking information President Trump revealed in his speech last night and what it means for our elections movingforward. 1776 Live Club: No purchase necessary.",
"channel": "The Dan Bongino Show",
"channelUrl": "https://rumble.com/c/bongino",
"channelHandle": "bongino",
"channelFollowers": 3660000,
"channelVerified": true,
"views": 943676,
"likes": 15500,
"dislikes": 194,
"comments": 1050,
"durationSeconds": 5185,
"durationText": "1:26:25",
"publishedAt": "2026-07-17T12:18:39+00:00",
"thumbnail": "https://1a-1791.com/video/fwe2/7c/s8/1/C/w/c/H/CwcHA.qR4e-small-Now-I-Can-Finally-Talk-Abou..jpg",
"width": 1920,
"height": 1080,
"captions": {
"en-auto": {
"language": "English (auto)",
"path": "https://1a-1791.com/video/fwe2/7c/s8/11/C/w/c/H/CwcHA.fn8Si.vtt"
}
},
"media": {
"mp4": {
"240": {
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.oaa.rec.mp4",
"meta": {
"bitrate": 203,
"size": 131950161,
"w": 640,
"h": 360
}
},
"360": {
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.baa.rec.mp4",
"meta": {
"bitrate": 636,
"size": 412534201,
"w": 640,
"h": 360
}
},
"480": {
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.caa.rec.mp4",
"meta": {
"bitrate": 1005,
"size": 651781271,
"w": 854,
"h": 480
}
},
"720": {
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.gaa.rec.mp4",
"meta": {
"bitrate": 2067,
"size": 1340090002,
"w": 1280,
"h": 720
}
},
"1080": {
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.haa.rec.mp4",
"meta": {
"bitrate": 3985,
"size": 2583714297,
"w": 1920,
"h": 1080
}
},
"1081": {
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.aaa.rec.mp4",
"meta": {
"bitrate": 8051,
"size": 5219124253,
"w": 1920,
"h": 1080
}
}
},
"timeline": {
"180": {
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.Faa.rec.mp4",
"meta": {
"bitrate": 11,
"size": 7777789,
"w": 320,
"h": 180
}
}
},
"audio": {
"192": {
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.Gaa.rec.aac",
"meta": {
"bitrate": 192,
"size": 124450817,
"w": 0,
"h": 0
}
}
}
},
"isLive": false,
"streams": [
{
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.aaa.rec.mp4",
"type": "mp4",
"quality": "1081p"
},
{
"url": "https://1a-1791.com/video/fwe2/7c/s8/2/C/w/c/H/CwcHA.haa.rec.mp4",
"type": "mp4",
"quality": "1080p"
}
]
}
}Billing metadata (credits charged, cache hit/miss) is returned in the X-Captapi-Credits and X-Captapi-Cache response headers.
Request parameters
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | Rumble video URL, e.g. https://rumble.com/vXXXX-title.html. 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. |
| 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. |
Frequently asked questions
What does the Rumble Video Details API do?
The Rumble Video Details API lets you fetch full metadata and key stats from a public Rumble video using one GET request to /v1/rumble/video-details. It returns clean JSON — no OAuth or infrastructure setup required.
How many credits does the Rumble Video Details API cost?
Each successful call costs 1 credit. 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 Video Details 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.
Ready to get Rumble video details?
Start free with 100 credits — no credit card required.
Get your free API key