Rumble
GET /v1/rumble/video/transcript

Rumble Video Transcript API

Rumble published captions as timed segments — parses the .vtt from video-details (not speech-to-text).

1 credit per request
TL;DR
Rumble published captions as timed segments — parses the .vtt from video-details (not speech-to-text). The Rumble Video Transcript API (Rumble) is a single authenticated GET request to /v1/rumble/video/transcript that responds with clean JSON and costs 1 credit. 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 Video Transcript API?

Fetches the caption track Rumble already exposes on /video-details (unsigned .vtt URLs), parses cues into segments[{text,startMs,endMs}], and returns the full text. source is always "captions". Pass language to require that track (en matches en-auto); mismatch → 404 language_not_available with availableLanguages (never a silent fallback). No tracks → 404 no_captions. 404 costs 0 credits. No STT fallback on this endpoint. Flat 1 credit on success. Segment shape is shared with /v1/youtube/audio-transcript.

What you get

  • source always "captions" on success
  • Uniform segments[{text,startMs,endMs}] (shared shape)
  • Rolling auto-caption duplicates collapsed
  • 404 language_not_available / no_captions cost 0

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/video/transcript?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_..."

Edit the parameters and the code updates instantly. Switch languages and hit copy.

Example response

{
  "success": true,
  "data": {
    "platform": "rumble",
    "id": "v7cv2cc",
    "url": "https://rumble.com/v7cv2cc-now-i-can-finally-talk-about-it-ep.-2555-07172026.html",
    "source": "captions",
    "language": "en-auto",
    "languageName": "English (auto)",
    "durationSeconds": 5185,
    "segments": [
      {
        "text": "All America all the time sit down buckle up and get ready for the Dan Bongino show",
        "startMs": 52240,
        "endMs": 59760
      },
      {
        "text": "team is like",
        "startMs": 65750,
        "endMs": 71960
      },
      {
        "text": "Thank you. Mr. President for",
        "startMs": 71960,
        "endMs": 74280
      },
      {
        "text": "Declassifying a lot of this folks",
        "startMs": 75080,
        "endMs": 77080
      },
      {
        "text": "Obviously",
        "startMs": 79390,
        "endMs": 81720
      },
      {
        "text": "Was like itching to get on the air today",
        "startMs": 81720,
        "endMs": 85240
      },
      {
        "text": "When you go and take a job in the government, especially in the executive branch",
        "startMs": 85880,
        "endMs": 92530
      },
      {
        "text": "The president is the ultimate declassifier the job is not about you",
        "startMs": 93420,
        "endMs": 98140
      }
    ],
    "text": "All America all the time sit down buckle up and get ready for the Dan Bongino show team is like Thank you. Mr. President for Declassifying a lot of this folks Obviously Was like itching to get on the air today When you go and take a job in the government, especially in the executive branch The president is the ultimate declassifier the job is not about you"
  }
}

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

  • platformAlways "rumble" on this endpoint.
  • idRumble video id (e.g. v7cv2cc).
  • urlCanonical URL of the item.
  • sourceAlways "captions" — this endpoint parses Rumble's published .vtt only (no STT).
  • languageCaption track code actually returned (e.g. en-auto).
  • languageNameHuman label from the track (e.g. English (auto)).
  • durationSecondsVideo length in seconds when known (from video-details).
  • textFull transcript — segment texts joined with a single space.

Segments

Each item in segments contains:

  • textFull transcript — segment texts joined with a single space.
  • startMsCue start in integer milliseconds.
  • endMsCue end in integer milliseconds (always > startMs).

Parameters

NameTypeRequiredDescription
urlstringYesRumble 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.
languagestringNoPreferred caption language as an ISO code, e.g. "en". Defaults to auto-detect.
cachebooleanNoSet 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 1 credit. Pass cache=true for a free 24h cache hit; default is always fresh.

Using an AI agent? This endpoint is the MCP tool rumble_video_transcript 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/video/transcript and parse the JSON response.

Use cases

Accessibility

Provide captions and transcripts for hearing-impaired users.

Content Analysis

Analyze spoken content for keywords, topics, and sentiment.

Search & Discovery

Make video content searchable by text.

Content Creation

Extract quotes and key phrases from videos.

Language Learning

Provide text alongside audio for language learners.

Research

Analyze large volumes of video content efficiently.

SEO

Extract text content for search engine optimization.

Frequently asked questions

What does the Rumble Video Transcript API do?+

The Rumble Video Transcript API lets you extract the full, timestamped transcript from a public Rumble video using one GET request to /v1/rumble/video/transcript. It returns clean JSON — no OAuth or infrastructure setup required.

How many credits does the Rumble Video Transcript 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.

What if the Rumble video has no captions?+

This endpoint only parses Rumble's published .vtt tracks — it does not run speech-to-text. No tracks → 404 no_captions (0 credits). Language mismatch → 404 language_not_available with availableLanguages.

Is the Rumble Video Transcript 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 Video Transcript API?

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