# Rumble Video Downloader Pro (`xtech/rumble-video-downloader-pro`) Actor

𝗙𝗶𝗻𝗮𝗹𝗹𝘆 - 𝗔 𝗥𝘂𝗺𝗯𝗹𝗲 𝗗𝗼𝘄𝗻𝗹𝗼𝗮𝗱𝗲𝗿 𝗧𝗵𝗮𝘁 𝗗𝗼𝗲𝘀𝗻'𝘁 𝗦𝘂𝗰𝗸
No more one-at-a-time downloads or missing metadata. Concurrent processing, full data extraction, multiple formats. The professional solution for serious Rumble data collection.

- **URL**: https://apify.com/xtech/rumble-video-downloader-pro.md
- **Developed by:** [Xtech](https://apify.com/xtech) (community)
- **Categories:** Developer tools, Automation, Videos
- **Stats:** 34 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$20.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Rumble Video Downloader Pro 🎥

> Pro-grade Rumble video downloader with full metadata — built for reliability and simplicity.

### 🎯 What You Get

- Download multiple Rumble videos at once
- Capture full video metadata (title, plays, description, etc.)
- Works with standard Rumble links and embeds
- Downloads in the best available quality (or your selected quality)
- No video limits

### 💡 Example Output

```json
{
  "url": "https://rumble.com/v3zzik8-demo-video.html",
  "video_id": "v3zzik8",
  "title": "Demo Rumble Video",
  "description": "Sample description...",
  "duration": 120,
  "view_count": 12345,
  "download_url": "https://api.apify.com/v2/key-value-stores/xyz/records/v3zzik8",
  "upload_date": "2024-01-01",
  "thumbnail": "https://sp.rmbl.ws/s8/thumbnail.jpg",
  "categories": [],
  "tags": []
}
```

### ⚡ Quick Start

1. Paste your Rumble URLs
2. Select your preferred video resolution (144p, 240p, 360p, 480p, 720p, 1080p, 1440p, 2160p, 4320p)
3. Set how many videos to download at once (1-5)
4. Run and get your downloads

### 📝 Simple Setup

```json
{
  "urls": ["https://rumble.com/v3zzik8-demo-video.html"],
  "resolution": "1080p",
  "max_concurrent": 3,
  "use_proxy": true,
  "proxy_country": "US"
}
```

- `urls`: List of Rumble video URLs to download.
- `resolution`: Preferred video resolution. If the requested resolution is not available, the next best quality will be used. Options: `144p`, `240p`, `360p`, `480p`, `720p`, `1080p`, `1440p`, `2160p`, `4320p`. Default: `1080p`.
- `max_concurrent`: Maximum number of videos to download simultaneously (1-5). Default: 3.
- `use_proxy`: Route traffic through Apify residential proxy to reduce blocking (traffic-based billing on Apify).
- `proxy_country`: Optional two-letter country code (e.g., `US`, `GB`, `FR`) when using proxy.

### 📊 Perfect For

| Content Creators     | Researchers       | Personal Use    |
| -------------------- | ----------------- | --------------- |
| Download your videos | Archive content   | Offline viewing |
| Backup channel       | Collect metadata  | Save playlists  |
| Monitor competitors  | Track view counts | Share videos    |

Ready to download? Click "Try for free" to start!

### 🛡️ Reliability

- Handles public Rumble video downloads end-to-end
- Metadata captured with the video for easy archiving
- Defaults tuned for compatibility and minimal user setup

# Actor input Schema

## `urls` (type: `array`):

Enter one or more Rumble video URLs to download. You can paste a single URL or multiple URLs.

**Supported formats:**

- Regular videos: `https://rumble.com/vXXXX.html`
- Embed URLs: `https://rumble.com/embed/vXXXX/`

## `resolution` (type: `string`):

Select the preferred video resolution. If the requested resolution is not available, the next best quality will be used.

## `max_concurrent` (type: `integer`):

Maximum number of videos to download simultaneously. Higher values may be faster but use more memory and CPU. For most cases, the default of 3 is a good balance.

## `use_proxy` (type: `boolean`):

Route downloads via Apify residential proxy to reduce blocking (traffic-based billing).

## `proxy_country` (type: `string`):

Optional two-letter country code for proxy geolocation (e.g., US, GB, FR). Requires use\_proxy=true.

## Actor input object example

```json
{
  "urls": [
    "https://rumble.com/v72q85o-ai-influencers-are-coming.....html"
  ],
  "resolution": "1080p",
  "max_concurrent": 3,
  "use_proxy": false,
  "proxy_country": null
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "urls": [
        "https://rumble.com/v72q85o-ai-influencers-are-coming.....html"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("xtech/rumble-video-downloader-pro").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "urls": ["https://rumble.com/v72q85o-ai-influencers-are-coming.....html"] }

# Run the Actor and wait for it to finish
run = client.actor("xtech/rumble-video-downloader-pro").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "urls": [
    "https://rumble.com/v72q85o-ai-influencers-are-coming.....html"
  ]
}' |
apify call xtech/rumble-video-downloader-pro --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=xtech/rumble-video-downloader-pro",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/xOvn667QGzuKMl2Lz/builds/f2d39y53uEgr48kq5/openapi.json
