How to run a Rumble search
GET request to /v1/rumble/search with your input. You get clean JSON back in seconds for ~12 credits (0.6/result) per call — no OAuth, scraping or platform SDKs. Search Rumble programmatically and get structured, ranked results.How to run a Rumble search (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 Search API
Send an authenticated GET request to /v1/rumble/search 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/search?q=space" \
-H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."What the response looks like
{
"success": true,
"data": {
"query": "space",
"totalReturned": 5,
"results": [
{
"platform": "rumble",
"id": "v7dbdz0",
"url": "https://rumble.com/v7dbdz0-flat-earth-fake-space.html",
"title": "FLAT EARTH - FAKE SPACE",
"channel": "Flat Earth Clock app",
"channelUrl": "https://rumble.com/c/flatearthclock",
"views": 954,
"likes": 17,
"dislikes": 0,
"duration": "8:05",
"publishedAt": "2026-07-27T08:08:00-04:00",
"thumbnail": "https://1a-1791.com/video/fwe2/96/s8/1/8/r/8/J/8r8JA.oq1b-small-FLAT-EARTH-FAKE-SPACE..jpg",
"comments": 1
},
{
"platform": "rumble",
"id": "v7dbg7s",
"url": "https://rumble.com/v7dbg7s-dummyvision-2-just-asking-questions-and-closing-arguments-from-baron-colema.html",
"title": "SUNDAY SLOWS - Listening To a Special Spaces on Tyler Robinson - Misunderstanding Trial 101",
"channel": "Rekieta Law",
"channelUrl": "https://rumble.com/c/RekietaLaw",
"views": 7720,
"likes": 113,
"dislikes": 6,
"duration": "3:55:39",
"publishedAt": "2026-07-27T00:18:40-04:00",
"thumbnail": "https://1a-1791.com/video/fww1/89/s8/6/y/_/8/J/y_8JA.oq1b.37.jpg",
"comments": 7
},
{
"platform": "rumble",
"id": "v7dcipw",
"url": "https://rumble.com/v7dcipw-planet-earth-is-under-attack-by-space-demons.html",
"title": "PLANET EARTH IS UNDER ATTACK BY SPACE DEMONS",
"channel": "STRANGER THAN FICTION NEWS",
"channelUrl": "https://rumble.com/c/c-360794",
"views": 1240,
"likes": 23,
"dislikes": 1,
"duration": "18:54",
"publishedAt": "2026-07-27T16:34:03-04:00",
"thumbnail": "https://1a-1791.com/video/fwe2/97/s8/6/e/l/j/K/eljKA.oq1b.4.jpg",
"comments": 12
},
{
"platform": "rumble",
"id": "v7dci9i",
"url": "https://rumble.com/v7dci9i-dont-force-yourself-to-be-good-twitterx-space.html",
"title": "Don't Force Yourself to be GOOD! Twitter/X Space",
"channel": "Freedomain",
"channelUrl": "https://rumble.com/c/freedomain",
"views": 841,
"likes": 9,
"dislikes": 0,
"duration": "1:04:44",
"publishedAt": "2026-07-27T15:26:25-04:00",
"thumbnail": "https://1a-1791.com/video/fww1/25/s8/1/2/b/j/K/2bjKA.oq1b-small-Dont-Force-Yourself-to-be-G..jpg",
"comments": null
},
{
"platform": "rumble",
"id": "v7ddi44",
"url": "https://rumble.com/v7ddi44-patriot-pals-ep.8-lets-go-to-space.html",
"title": "Patriot Pals Ep.#8: Let's Go To Space!",
"channel": "Patriot Pals",
"channelUrl": "https://rumble.com/c/PatriotPals",
"views": 1380,
"likes": 20,
"dislikes": 0,
"duration": "6:26",
"publishedAt": "2026-07-28T06:39:28-04:00",
"thumbnail": "https://1a-1791.com/video/fwe2/36/s8/6/0/x/u/K/0xuKA.oq1b.jpg",
"comments": 2
}
]
}
}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 |
|---|---|---|---|
| q | string | Yes | Keywords or search query (min 2 characters). |
| 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. Default false — always fetch fresh data. |
Frequently asked questions
What does the Rumble Search API do?
The Rumble Search API lets you search and return matching results from a public Rumble query using one GET request to /v1/rumble/search. It returns clean JSON — no OAuth or infrastructure setup required.
How many credits does the Rumble Search 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 shared cache (0 credits on hit); default is always fresh. 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 Search 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 shared cache (0 credits on hit); default is always fresh. Use it for analytics, monitoring, and content automation.
Ready to run a Rumble search?
Start free with 100 credits — no credit card required.
Get your free API key