100 free credits — no credit card required.Start building
Logo
100 free credits — no credit card required

Rumble Scraper API

Rumble API: 5 endpoints for keyword search, channel uploads, video details, transcripts, and comments. Search, channel videos, video details, and comments cost 1 credit per request; transcripts are premium at 10 credits. 100 free credits on signup, no card. Rumble has no public read API — SocialCrawl returns unified JSON on the same x-api-key as 43 other platforms.

TL;DR

The Rumble API by SocialCrawl returns Rumble data as structured JSON — 5 endpoints behind one x-api-key, from 1 credit per call. It shares one unified schema with 43 other platforms, so the same client code works everywhere.

Live demo

Try the Rumble API in your browser

Type a real handle, run a real request, see the JSON SocialCrawl returns. No signup, no key — same response shape you get in production.

Try the Rumble Search API

See real data before writing a single line

GET/v1/rumble/search

Search query.

1 optional parameters

Cursor from the previous response — the next page number (e.g. `2`).

Endpoints

What data does the Rumble API return?

Every endpoint returns structured JSON with a unified schema. Computed fields like engagement rate and content category come standard.

Last updated July 2026

Maintained by the SocialCrawl team, reviewed July 2026

Searchstandard

Search Rumble videos

Channel Videosstandard

List videos for a Rumble channel

Videostandard

Get a Rumble video

Video Transcriptpremium

Get a Rumble video transcript

Video Commentsstandard

List top-level comments on a Rumble video

What you get

What Rumble data can you get?

Every Rumble endpoint returns the same unified JSON schema, so one parser handles the whole platform. These are the real fields the Rumble API returns, taken straight from live responses.

Fields you get back in a Rumble response include:

  • post.id
  • post.url
  • post.content
  • post.author
  • post.engagement
  • post.flags
  • post.published_at
  • post.ext
  • id
  • content.text
  • content.thumbnail_url
  • content.duration_seconds
  • content.media_urls
  • author.username
  • author.display_name
  • author.avatar_url
  • author.verified
  • engagement.views
  • engagement.likes
  • engagement.comments
  • engagement.shares
  • engagement.saves
  • published_at
  • url
Quickstart

How to scrape Rumble in 3 steps

No proxies, no headless browsers, no login sessions. Send one authenticated GET request and read structured JSON back.

  1. 1

    Get a free API key

    Create an account and copy your key from the dashboard. Signup includes 100 free credits, and no card is required.

  2. 2

    Call the Search endpoint

    Send a GET request with your key in the x-api-key header. Here is the full Rumble Search request:

    curl -H "x-api-key: YOUR_API_KEY" \
      "https://www.socialcrawl.dev/v1/rumble/search?query=funny+cats"
  3. 3

    Read the unified JSON

    The response comes back in the shared SocialCrawl schema, with computed fields like engagement_rate and content_category already filled in, so the same client code works across every platform.

Requirements and limits

Requirements and limits

Everything you need to know before your first Rumble call.

Authentication
One API key, passed in the x-api-key request header. No OAuth flow, no app review, and no per-platform credentials to manage.
Pagination
List endpoints return a next_cursor and a has_more flag. Pass the cursor back to page through results, with the same contract on every platform.
Credits
Calls start at 1 credits and are deducted per request. Every account starts with 100 free credits, and credits never expire.
Rate limits
There are no artificial rate limits. Your credit balance is the only throttle, so you can run requests concurrently as fast as you need.
Pricing

How much does the Rumble API cost?

Simple credit-based pricing with no subscription. You pay per call, and the exact credit cost of every Rumble endpoint is listed below.

EndpointCredits per call
Search1 credit
Channel Videos1 credit
Video1 credit
Video Transcript10 credits
Video Comments1 credit

Every account starts with 100 free credits, and no card is required.

At credit-pack pricing that works out to roughly £0.002 to £0.06 per call, and credits never expire.

Developer First

How do you scrape social media data in seconds?

The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 44 platforms covering 10B+ monthly active users.

One schema, every platform

Query 44 platforms with identical response structures. Write your integration once.

Computed fields, not just scraped

Every response includes engagement_rate, estimated_reach, content_category, and language — ready to use.

See your data before you code

Visual Data Explorer — paste any URL, get rich result cards, sortable tables, CSV export.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 44 platforms
One API, 44 platforms

How does SocialCrawl handle 44 different platforms?

Social media scraping is hard. Schema normalization, authentication, rate limits, pagination — we handle it all before your data arrives.

One schema, every platform

Write once, query them all.

44 platforms return 44 different JSON shapes. We normalize every response into one consistent structure.

Ready-to-use metrics

Metrics ready before you ask.

Engagement rate, estimated reach, content category, language — calculated on every response automatically.

Consistent pagination

One cursor, every platform.

Every platform paginates differently. We give you one consistent cursor-based system.

Always fresh

Live data, never cached.

Every request hits the actual platform. No stale data, no cache lag.

Things you'll never build

Auth, proxies, and rate limits — handled.

Platform authentication, IP rotation, rate limit management — abstracted away. Just send a GET request.

Start for free
Reviews

What developers say

Rated 4.9 out of 5 from 200 developer reviews
The unified schema saved us weeks of integration work. One parser handles every platform.
Alex Chen, Full-Stack Developer
Our agents process social data from 44 platforms with zero platform-specific logic — one schema, end to end.
Sarah Kim, AI Engineer, AgentFlow
I paste an influencer's URL and get everything — followers, engagement rate, content categories — without touching code.
James Rivera, Marketing Director
We switched from building our own scrapers. SocialCrawl handles the hard stuff, we focus on insights.
Maria Santos, CTO, DataPulse
The computed fields alone — engagement_rate, estimated_reach, content_category — saved us an entire data pipeline.
David Park, Lead Data Scientist
Comparison

How does SocialCrawl compare to DIY scraping for Rumble data?

Same Rumble data, two very different paths. Auth, rate limits, schema, and cost — side by side.

Setup

SocialCrawl
Sign up and send one GET request
DIY scraping
Build proxies, headless browsers, and HTML parsers first

Authentication

SocialCrawl
One x-api-key header
DIY scraping
None — but you handle blocks and bot detection yourself

Response schema

SocialCrawl
Unified JSON shared across 44 platforms
DIY scraping
Raw HTML you parse and normalize yourself

Pricing

SocialCrawl
1 credit per request (10 for transcripts); 100 free credits
DIY scraping
Proxy and server costs plus ongoing engineering hours

Data coverage

SocialCrawl
Search, channel uploads, video details, transcripts, comments
DIY scraping
Whatever your parser extracts — transcripts are especially fiddly

Maintenance

SocialCrawl
SocialCrawl absorbs Rumble markup changes upstream
DIY scraping
Your scraper breaks whenever Rumble changes its pages
Quick answers

How much does Rumble scraping cost?

SocialCrawl uses credit-based pricing: you pay per API call, and most Rumble endpoints cost just a few credits. Every account starts with 100 free credits — no subscriptions, no compute units, no credit card required.

See pricing

Is Rumble scraping legal?

SocialCrawl returns publicly available Rumble data. Courts have generally upheld scraping public data — most notably in hiQ v. LinkedIn — but compliance depends on your use case and jurisdiction. You are responsible for following applicable laws and platform terms.

Glossary

Common Rumble scraping terms

The phrases developers search for when they need Rumble data, and what each one means with SocialCrawl.

Rumble scraper API
A Rumble scraper API returns Rumble data as structured JSON without you running any scraping infrastructure. SocialCrawl handles the proxies, parsing, and format changes, so you call an endpoint and get clean fields back. Pricing starts at 1 credits per call.
Rumble data API
A Rumble data API is a programmatic way to read public Rumble data on demand. SocialCrawl exposes 5 Rumble endpoints behind one x-api-key, all sharing the same unified schema, so your integration never has to change per platform.
scrape Rumble
To scrape Rumble is to extract its public data programmatically instead of by hand. With SocialCrawl you scrape Rumble by sending a single authenticated request, and the response is normalised into the same JSON shape used across every platform.
Read the full API reference
FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
How do I scrape Rumble data with an API?
SocialCrawl exposes 5 Rumble endpoints — keyword search, channel videos, video details, video transcript, and video comments. Send a GET request with your x-api-key and a query, handle, or video URL; normalized JSON comes back in one call.
Does Rumble have an official public data API?
No. Rumble offers creator-facing tools but no public REST API for reading search results, channel uploads, or comments. SocialCrawl fills that gap by reading publicly visible Rumble pages through our upstream provider and returning the data as structured JSON.
Is there a Rumble data API?
Yes. SocialCrawl is the Rumble data API: 5 REST endpoints for keyword search, channel uploads, video details, transcripts, and comments, all returned as unified JSON. There is no official public Rumble data API for reading arbitrary public data, so the alternative is a scraper you build and maintain yourself. SocialCrawl handles the upstream fetching and normalization; standard calls cost 1 credit and transcripts are premium at 10 credits, with 100 free credits to start.
What Rumble endpoints does SocialCrawl offer?
5 endpoints: Search, Channel Videos, Video, Video Transcript, and Video Comments.
How much does the Rumble API cost?
Search, channel videos, video details, and comments each cost 1 credit per request (standard tier). The transcript endpoint is premium at 10 credits — and if a video has no captions, transcript returns null and no credits are deducted. New accounts get 100 free credits, no card required.
Is scraping Rumble data legal?
SocialCrawl reads only publicly visible Rumble data — public videos, channels, view counts, and comments. You are responsible for complying with Rumble's Terms of Service and any data protection regulations that apply to your specific use case. SocialCrawl operates under a documented GDPR legitimate-interest framework: public, logged-out data only, no credential use, short-lived caches (2 to 30 minutes) with no persistent store, and a public opt-out channel for anyone whose public info appears in responses. Full details: socialcrawl.dev/legal/public-data-notice.
What can I build with the Rumble API?
Media monitoring across alternative video platforms, creator analytics dashboards that put Rumble next to YouTube and Twitch, misinformation and narrative research, and comment-level sentiment analysis. The unified schema means your YouTube parsing code handles Rumble responses too.
What is the best Rumble scraper API?
SocialCrawl is the most complete Rumble scraper API: 5 endpoints covering search, channel uploads, video details, transcripts, and comments. Standard calls cost 1 credit each; transcripts are premium at 10 credits. 100 free credits on signup, no card. Rumble has no public read API, so the alternative is a DIY scraper you maintain yourself.

Ask AI about SocialCrawl

Ready to start scraping Rumble data?

Get your API key and access all 5 Rumble endpoints in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown