# Rumble Shorts Video Downloader (`kingscraper/rumble-shorts-video-downloader`) Actor

🎬Download Rumble Shorts videos in 🎥1080p, 720p, or 360p with full metadata. 📌Get video title, uploader name, ⏱️duration,🖼️ thumbnail, separate AAC audio, and 📥direct CDN 🔗URLs in clean JSON output.🚀

- **URL**: https://apify.com/kingscraper/rumble-shorts-video-downloader.md
- **Developed by:** [King Scraper](https://apify.com/kingscraper) (community)
- **Categories:** Videos, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 shorts videos

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 Shorts Video Downloader - Ultimate Vertical Content Saver

**Effortlessly download any Rumble Shorts video with our high-performance **Rumble Shorts Video Downloader**! This professional Apify actor enables batch downloading of vertical short-form content while preserving crystal-clear quality, creator metadata, and multiple resolution options.**



### 📌 Overview

Need to archive viral Rumble Shorts or repurpose vertical content? The **Rumble Shorts Video Downloader** delivers:

- ✅ **Multi-format support**: MP4, AAC audio, and more
- ✅ **Batch processing**: Download 100+ shorts URLs in one run
- ✅ **Quality flexibility**: Choose from 360p, 720p, or 1080p
- ✅ **Creator insights**: Uploader names, profile URLs, and titles
- ✅ **Direct CDN access**: Fast, encrypted download URLs
- ✅ **Embed-ready**: Get embed URLs for cross-platform sharing

Perfect for content curators 📱, social media managers 📊, video editors ✂️, and market researchers 🔍 who need a reliable **Rumble Shorts Video Downloader**!

---

### ⭐ Key Features of Rumble Shorts Video Downloader

#### 🎯 Media Extraction Capabilities
- **Multiple Resolutions**: 360p (mobile), 720p (HD), 1080p (Full HD)
- **Separate Audio Tracks**: Extract AAC audio independently
- **Best Quality Auto-Selection**: Get the highest available resolution
- **Batch Mode**: Process unlimited URLs per execution
- **Thumbnail Preservation**: Download high-res cover images (720x1280)

#### 📝 Metadata You Get
- **Video Title**: Exact short title as uploaded
- **Creator Handle**: Uploader name + profile URL
- **Duration**: Length in seconds (perfect for short-form analytics)
- **Dimensions**: Width & height in pixels (720x1280 or 1080x1920)
- **Embed URL**: Ready-to-use iframe code
- **Original Webpage URL**: Source reference

#### ⚡ Advanced Technical Features
- **No Login Required**: Works with public Rumble Shorts only
- **Proxy-Ready**: Bypass regional restrictions
- **Apify Storage Integration**: Optional cloud saving
- **Error Handling**: Per-URL status reporting (success/failure)
- **Direct CDN Links**: Bypass intermediate redirects

---

### 📥 Input Configuration

Simply paste your Rumble Shorts URLs into the input section. The **Rumble Shorts Video Downloader** accepts multiple URLs in this format:

```json
{
  "video_urls": [
    {
      "url": "https://rumble.com/shorts/v788y7e"
    },
    {
      "url": "https://rumble.com/shorts/v78a6dc"
    },
    {
      "url": "https://rumble.com/shorts/v7880po"
    }
  ]
}
````

#### 📊 Input Specifications

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `video_urls` | Array | ✅ Yes | List of Rumble Shorts URLs to process |
| `url` | String | ✅ Yes | Valid Rumble Shorts URL (must contain `/shorts/`) |

> 💡 **Pro Tip**: The **Rumble Shorts Video Downloader** supports up to 100 URLs per batch run!

***

### 📤 Output Structure

Each processed short returns a comprehensive JSON object. Here's a sample output from the **Rumble Shorts Video Downloader**:

```json
[
  {
    "status": "success",
    "title": "Big Boss is MAD!",
    "description": null,
    "duration": 90,
    "uploader": "Rufus The Bull",
    "uploader_url": "https://rumble.com/c/RufusTheBull",
    "thumbnail": "https://1a-1791.com/.../thumbnail.jpg",
    "thumbnail_width": 720,
    "thumbnail_height": 1280,
    "video_width": 720,
    "video_height": 1280,
    "embed_url": "https://rumble.com/embed/v762a76/",
    "webpage_url": "https://rumble.com/shorts/v788y7e",
    "best_download_url": "https://1a-1791.com/.../1080p.mp4",
    "video_formats": [
      {
        "quality": "360",
        "type": "video",
        "ext": "mp4",
        "url": "https://1a-1791.com/.../360p.mp4"
      },
      {
        "quality": "720",
        "type": "video",
        "ext": "mp4",
        "url": "https://1a-1791.com/.../720p.mp4"
      },
      {
        "quality": "1080",
        "type": "video",
        "ext": "mp4",
        "url": "https://1a-1791.com/.../1080p.mp4"
      }
    ],
    "audio_formats": [
      {
        "quality": "audio",
        "type": "audio",
        "ext": "aac",
        "url": "https://1a-1791.com/.../audio.aac"
      }
    ]
  }
]
```

#### 📋 Output Field Documentation

**🎬 Video Information**

| Field | Description |
|-------|-------------|
| `status` | Processing result (success/failed) |
| `title` | Video title of the Rumble Short |
| `duration` | Length in seconds |
| `uploader` | Creator's display name |
| `uploader_url` | Link to creator's Rumble channel |
| `webpage_url` | Original Rumble Shorts page |

**🖼️ Media Assets**

| Field | Description |
|-------|-------------|
| `thumbnail` | High-res preview image URL |
| `thumbnail_width` | Thumbnail width (typically 720px) |
| `thumbnail_height` | Thumbnail height (typically 1280px) |
| `best_download_url` | Recommended highest quality video |
| `embed_url` | Iframe embed code URL |

**🎨 Quality Options Array**

| Field | Description |
|-------|-------------|
| `quality` | Resolution label (360/720/1080/mp4/audio) |
| `type` | Media type (video or audio) |
| `ext` | File extension (mp4 or aac) |
| `url` | Direct download link |

***

### 🎚️ Quality Tiers Available

The **Rumble Shorts Video Downloader** automatically detects and provides:

1. **Full HD (1080p)** – Highest quality, 1920x1080 or 1080x1920 resolution
2. **HD Ready (720p)** – Balanced quality, 1280x720 or 720x1280 resolution
3. **Mobile Optimized (360p)** – Bandwidth-friendly, smaller file sizes
4. **Audio Only** – AAC format, perfect for podcasts or music clips
5. **Original MP4** – Source quality as uploaded

Each tier includes direct CDN URLs for lightning-fast downloads.

***

### 💼 Use Cases for Rumble Shorts Video Downloader

- 📱 **Content Creators** – Repurpose viral shorts across TikTok, Reels, YouTube Shorts
- 📊 **Social Media Managers** – Archive client content and track competitor trends
- 🎓 **Researchers** – Study short-form video patterns and engagement metrics
- 🎵 **Music Analysts** – Extract audio tracks from music-related shorts
- ✂️ **Video Editors** – Download raw footage for remix projects
- 📈 **Marketing Agencies** – Build content libraries for campaigns

***

### 🆚 Why Choose This Rumble Shorts Video Downloader?

- ⚡ **Speed Optimized** – Parallel processing for batch downloads
- 🔒 **Privacy First** – No login credentials required
- 📦 **Structured Output** – Clean JSON for easy integration
- 🔄 **Regular Updates** – Maintained for Rumble API changes
- 💰 **Cost Efficient** – Pay only per successful download
- 🛠️ **Developer Friendly** – Clear error codes and status reports

***

### ⚠️ Limitations

- Only works with **public** Rumble Shorts videos (not private/unlisted)
- Respects Rumble's rate limits (built-in delays prevent bans)
- No comment/download metadata (focus on video+audio only)
- Requires valid Rumble Shorts URL format (`/shorts/` in path)

### 🔗 Related Actors in Our Social Media Suite

#### 🎥 **Rumble Tools**

- [Rumble Post Scraper](https://apify.com/kingscraper/rumble-post-scraper)

#### 🎥 **Linkedin Tools**

- [LinkedIn Video Downloader](https://apify.com/kingscraper/youtube-video-downloader)

#### 🎥 **YouTube Tools**

- [YouTube Video Downloader](https://apify.com/kingscraper/youtube-video-downloader)
- [YouTube Shorts Downloader](https://apify.com/kingscraper/youtube-shorts-downloader)
- [YouTube Mp3/Thumbnail & Audio Scraper](https://apify.com/kingscraper/youtube-mp3-thumbnail-audio-scraper)
- [Youtube Video and MP3 Downloader](https://apify.com/kingscraper/youtube-video-and-mp3-downloader)

#### 📘 **Snapchat Tools**

- [Snapchat Story Downloader](https://apify.com/kingscraper/snapchat-story-downloader)
- [Snapchat Spotlight Downloader](https://apify.com/kingscraper/snapchat-spotlight-downloader)

#### 📘 **Facebook Scraper Tools**

- [Facebook Post Scraper](https://apify.com/kingscraper/facebook-post-scraper)
- [Facebook Reels Downloader](https://apify.com/kingscraper/facebook-reels-downloader)
- [Facebook Video Post Downloader](https://apify.com/kingscraper/facebook-video-post-downloader)
- [Facebook Reels And Thumbnail Downloader](https://apify.com/kingscraper/facebook-reels-and-thumbnail-downloader)

#### 📘 **Instagram Scraper Tools**

- [Instagram Reels Scraper](https://apify.com/kingscraper/instagram-reels-scraper)
- [Instagram Photo Scraper](https://apify.com/kingscraper/instagram-photo-scraper)
- [Instagram Video Downloader](https://apify.com/kingscraper/instagram-video-downloader)

#### 📘 **Pinterest Scraper Tools**

- [Pinterest Video and Image Downloader](https://apify.com/kingscraper/pinterest-video-and-image-downloader)

#### 📘 **TikTok Scraper Tools**

- [TikTok Thumbnail & Audio Scraper](https://apify.com/kingscraper/tiktok-thumbnail-audio-scraper)
- [Tiktok Video And Thumbnail Downloader](https://apify.com/kingscraper/tiktok-video-and-thumbnail-downloader)

***

### 📧 Need Custom Features?

Want **higher resolution limits**, **automatic subtitle extraction**, or **custom filename patterns** for your **Rumble Shorts Video Downloader**?

✉️ **Email**: <mehedy7613@gmail.com> for enterprise quotes and tailored solutions!

***

**🎯 Ready to download?** Paste your Rumble Shorts URLs into the **Rumble Shorts Video Downloader** and click Start!

# Actor input Schema

## `video_urls` (type: `array`):

List of Rumble Shorts URLs to process (e.g. https://rumble.com/shorts/v76t6ru).

## Actor input object example

```json
{
  "video_urls": [
    {
      "url": "https://rumble.com/shorts/v76t6ru"
    },
    {
      "url": "https://rumble.com/shorts/v788y7e"
    },
    {
      "url": "https://rumble.com/shorts/v7822s6"
    }
  ]
}
```

# 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 = {
    "video_urls": [
        {
            "url": "https://rumble.com/shorts/v76t6ru"
        },
        {
            "url": "https://rumble.com/shorts/v788y7e"
        },
        {
            "url": "https://rumble.com/shorts/v7822s6"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("kingscraper/rumble-shorts-video-downloader").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 = { "video_urls": [
        { "url": "https://rumble.com/shorts/v76t6ru" },
        { "url": "https://rumble.com/shorts/v788y7e" },
        { "url": "https://rumble.com/shorts/v7822s6" },
    ] }

# Run the Actor and wait for it to finish
run = client.actor("kingscraper/rumble-shorts-video-downloader").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 '{
  "video_urls": [
    {
      "url": "https://rumble.com/shorts/v76t6ru"
    },
    {
      "url": "https://rumble.com/shorts/v788y7e"
    },
    {
      "url": "https://rumble.com/shorts/v7822s6"
    }
  ]
}' |
apify call kingscraper/rumble-shorts-video-downloader --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Rumble Shorts Video Downloader",
        "description": "🎬Download Rumble Shorts videos in 🎥1080p, 720p, or 360p with full metadata. 📌Get video title, uploader name, ⏱️duration,🖼️ thumbnail, separate AAC audio, and 📥direct CDN 🔗URLs in clean JSON output.🚀",
        "version": "0.0",
        "x-build-id": "JYUuSvMUJ91108q9n"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/kingscraper~rumble-shorts-video-downloader/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-kingscraper-rumble-shorts-video-downloader",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/kingscraper~rumble-shorts-video-downloader/runs": {
            "post": {
                "operationId": "runs-sync-kingscraper-rumble-shorts-video-downloader",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/kingscraper~rumble-shorts-video-downloader/run-sync": {
            "post": {
                "operationId": "run-sync-kingscraper-rumble-shorts-video-downloader",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "video_urls"
                ],
                "properties": {
                    "video_urls": {
                        "title": "Rumble Shorts URLs",
                        "type": "array",
                        "description": "List of Rumble Shorts URLs to process (e.g. https://rumble.com/shorts/v76t6ru).",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
