Rumble
GET /v1/rumble/search

Rumble Search API

Search Rumble programmatically and get structured, ranked results.

~12 credits (0.6/result) per request
TL;DR
Search Rumble programmatically and get structured, ranked results. The Rumble Search API (Rumble) is a single authenticated GET request to /v1/rumble/search 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 Search API?

The Rumble Search API lets you search and return matching results for Rumble search with a single REST call. No OAuth, no infrastructure to maintain, and no platform SDKs — send the request, get clean structured JSON back. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh.

What you get

  • Ranked, structured result list
  • Title, URL, author, and thumbnail per result when available
  • Engagement metrics where the platform exposes them
  • Configurable result limit

Try it

Open in Playground

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

Sign in to run live
curl "https://api.captapi.com/v1/rumble/search?q=space" \
  -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": {
    "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 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

  • queryThe search query you sent.
  • totalReturnedNumber of items returned in this response.

Results

Each item in results contains:

  • platformPlatform identifier (e.g. youtube, instagram).
  • idStable platform ID for the item.
  • urlCanonical URL of the item.
  • titleTitle of the item.
  • channelChannel. Example: "Flat Earth Clock app".
  • channelUrlURL of the channel.
  • viewsView count.
  • likesLike count.
  • dislikesDislike count.
  • durationLength in seconds.
  • publishedAtPublish date (ISO 8601).
  • thumbnailThumbnail image URL.
  • commentsComment count.

Parameters

NameTypeRequiredDescription
qstringYesKeywords or search query (min 2 characters).
limitintegerNoMax items to return (default 20, max 200). Billed per result.
cachebooleanNoSet true to serve from the 24h response cache. Default false — always fetch fresh data.

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).

Using an AI agent? This endpoint is the MCP tool rumble_search via @captapi/mcp. Set it up →

How it works

  1. 1. Sign up — get 100 free credits, no card required.
  2. 2. Create a key from your dashboard.
  3. 3. Send one request to /v1/rumble/search and parse the JSON response.

Use cases

Trend Discovery

Find trending content by keyword or hashtag.

Content Sourcing

Build feeds and playlists programmatically.

Monitoring

Track topics, brands, and competitors.

Research

Sample large sets of content for analysis.

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.

More Rumble APIs

Ready to use the Rumble Search API?

Sign up, grab your key, and make your first call in 60 seconds.