What You'll Learn
- • Setting up your development environment
- • Installing the required HTTP client
- • Authenticating with the ScrapeCreators API
- • Making requests to Rumble
- • Handling responses and errors
- • Best practices for production use
Tutorial · Rumble
⚡️ Node.js Step-by-stepExtract search data from Rumble. Real code, real responses, real production patterns — paste it into your project and ship.
Learn how to scrape Rumble search results using Node.js. This comprehensive guide will walk you through the entire process, from setup to implementation.
First, you'll need a ScrapeCreators API key to authenticate your requests.
Sign up at app.scrapecreators.com to get your free API key with 100 requests.
Make sure you have the following installed:
Axios is a promise-based HTTP client for Node.js
npm install axiosNow let's make a request to the Rumble API using Node.js. Replace YOUR_API_KEY with your actual API key.
import axios from 'axios';
const API_KEY = 'YOUR_API_KEY';
async function scrape() {
try {
const response = await axios.get(`https://api.scrapecreators.com/v1/rumble/search?query=funny cats&cursor=2`, {
headers: {
'x-api-key': API_KEY,
'Content-Type': 'application/json'
}
});
console.log('Response:', response.data);
return response.data;
} catch (error) {
console.error('Error:', error.response?.data || error.message);
}
}
// Usage
scrape();This endpoint accepts the following parameters:
queryRequired(string)Search query.
Example: funny cats
cursorOptional(string)Cursor from the previous response. This is the next page number, like 2 or 3.
Example: 2
Execute your script to test the API connection. You should see a JSON response with Rumble search results data.
✅ Success: You should receive a structured JSON response containing the requested data.
Here's an example of the JSON response you'll receive:
{
"success": true,
"credits_remaining": 49997730850,
"query": "funny cats",
"videos": [
{
"id": "v6w80h0",
"url": "https://rumble.com/v6w80h0-democrats-pretend-to-care-about-epstein-nightly-scroll-w-hayley-caronia-ep..html",
"title": "Democrats Pretend To Care About Epstein - Nightly Scroll w/ Hayley Caronia (Ep.90) - 07/15/2025",
"thumbnail": "https://hugh.cdn.rumble.cloud/video/fww1/e9/s8/1/K/X/A/2/KXA2y.oq1b.2-small-Democrats-Pretend-To-Care-A.jpg",
"duration": "10 months ago Democrats Pretend To Care About Epstein - Nightly Scroll w/ Hayley Caronia (Ep.90) - 07/15/2025 BonginoReport Verified",
"publishedAt": "2025-07-15T16:29:49-04:00",
"publishedText": "10 months ago",
"viewCountText": "185,000 views",
"viewCountInt": 185000,
"channel": {
"name": "BonginoReport Verified",
"url": "https://rumble.com/user/BonginoReport",
"handle": "BonginoReport"
},
"type": "video"
},
{
"id": "v79yv40",
"url": "https://rumble.com/v79yv40-pets-dog-and-cat-insanely-funny-fails-compilation-viral-memes-epic-pranks-a.html",
"title": "PETS - DOG & CAT 🤣 INSANELY FUNNY FAILS COMPILATION! Viral Memes, Epic Pranks & Unhinged Chaos 😂🔥",
"thumbnail": "https://hugh.cdn.rumble.cloud/video/fwe2/8f/s8/1/a/C/F/o/aCFoA.oq1b-small-PETS-DOG-and-CAT-INSANELY-F..jpg",
"duration": "2 days ago PETS - DOG & CAT 🤣 INSANELY FUNNY FAILS COMPILATION! Viral Memes, Epic Pranks & Unhinged Chaos 😂🔥 Funny Pet Cat",
"publishedAt": "2026-05-17T03:01:42-04:00",
"publishedText": "2 days ago",
"viewCountText": "320 views",
"viewCountInt": 320,
"channel": {
"name": "Funny Pet Cat",
"url": "https://rumble.com/c/c-7841728",
"handle": "c-7841728"
},
"type": "video"
},
{
"id": "valm19",
"url": "https://rumble.com/valm19-funny-cat-funny-cat.html",
"title": "Funny cat funny cat",
"thumbnail": "https://hugh.cdn.rumble.cloud/video/s8/6/n/Z/6/d/nZ6db.oq1b.1.jpg",
"duration": "5 years ago Funny cat funny cat Cute Cats",
"publishedAt": "2020-10-04T13:50:36-04:00",
"publishedText": "5 years ago",
"viewCountText": "539 views",
"viewCountInt": 539,
"channel": {
"name": "Cute Cats",
"url": "https://rumble.com/c/CuteCats223",
"handle": "CuteCats223"
},
"type": "video"
}
],
"channels": [],
"playlists": [],
"shorts": [
{
"id": "v79mu94",
"url": "https://rumble.com/shorts/v79mu94",
"title": "FUNNY🤣 CATS",
"thumbnail": "https://hugh.cdn.rumble.cloud/video/fww1/86/s8/6/O/E/w/m/OEwmA.oq1b.jpg",
"duration": null,
"publishedAt": "2026-05-09T19:22:41-04:00",
"publishedText": "9 days ago",
"viewCountText": "327 views",
"viewCountInt": 327,
"channel": {
"name": "SusieQ4u",
"url": "https://rumble.com/user/SusieQ4u",
"handle": "SusieQ4u"
},
"type": "short"
},
{
"id": "v792a76",
"url": "https://rumble.com/shorts/v792a76",
"title": "Too Much Love… Cat Identity Crisis!",
"thumbnail": "https://hugh.cdn.rumble.cloud/video/fwe2/45/s8/1/I/u/S/i/IuSiA.oq1b-small-Too-Much-Love-Cat-Identity-..jpg",
"duration": null,
"publishedAt": "2026-04-27T06:27:02-04:00",
"publishedText": "22 days ago",
"viewCountText": "5,050 views",
"viewCountInt": 5050,
"channel": {
"name": "Animal Madness TV",
"url": "https://rumble.com/c/AniMadTV",
"handle": "AniMadTV"
},
"type": "short"
}
],
"lives": [],
"cursor": 2
}Check that your response includes the expected fields:
success(boolean)credits_remaining(number)query(string)videos(object)channels(object)Implement comprehensive error handling and retry logic for failed requests. Log errors properly for debugging.
Cache responses when possible to reduce API calls and improve performance. Consider data freshness requirements.
Never expose your API key in client-side code. Use environment variables and secure key management practices.
When scraping multiple search results, consider batching requests to maximize throughput while staying within rate limits.
Use asynchronous processing in Node.js to handle multiple requests concurrently and improve overall performance.
Analyze Rumble search results to understand market trends, competitor analysis, and audience insights.
Track performance metrics, engagement rates, and content trends across Rumble search results.
Identify potential customers and business opportunities throughRumble data analysis.
Check your API key is correct and properly formatted in the x-api-key header.
You ran out of credits and need to buy more.
The resource might not exist or be private.
Temporary server issue. Implement retry logic with exponential backoff.
ScrapeCreators offers 100 free API calls to get started. After that, pricing starts at $10 for 5k requests with volume discounts available.
Scraping publicly available data is fair game, and we only collect public data. So anything that you can see in an incognito browser is what we collect.
There is no rate limit! So you can scrape as fast as you want!
All API responses are returned in JSON format, making it easy to integrate with any programming language or application.
Yes! This tutorial focuses on core Node.js HTTP concepts that work with any framework. The API calls remain the same regardless of your specific Node.js setup.
For large datasets, implement pagination, use streaming responses where available, and consider storing data in a database for efficient querying.
Ready to ship?
100 free API calls. No credit card. Same endpoint, same response shape.
Same endpoint, different language