# Rumble Scraper (`unfenced-group/rumble-scraper`) Actor

Scrape Rumble videos, channels, playlists and search results. Returns views, likes, dislikes, categories, channel stats, every available resolution with direct media URLs, captions and full metadata. Filter search by date, duration and sort order. No API key required.

- **URL**: https://apify.com/unfenced-group/rumble-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** Social media, Videos
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.79 / 1,000 listing results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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 Scraper

![Rumble Scraper](https://api.apify.com/v2/key-value-stores/WSyJy3qqLRnCEhLRF/records/banner.png)

Extract videos, channels, playlists and search results from Rumble at scale, with the richest field set available: views, vote counts, categories, direct media URLs, captions and channel stats. No API key required.

---

### Why this scraper?

#### 🎥 Complete video data
Title, description, upload date, duration, dimensions, frame rate and quality for every video.

#### 📊 Real engagement metrics
View count, likes, dislikes and the net Rumble score, pulled directly from each listing.

#### 🎬 Direct media access
Every available resolution with its direct file URL, bitrate and size, plus the audio track and auto-generated captions.

#### 🏢 Channel profiles
Channel name, URL, verified status and follower count on every record.

#### 🔍 Flexible inputs
Search by keyword, or point the scraper at any channel, playlist, search or category URL.

#### 💶 Lowest price on the platform
Tiered pricing down to $1.29 per 1,000 results. You only pay for results you receive.

---

### Input parameters

| Parameter | Type | Default | Description |
|---|---|---|---|
| `searchQueries` | array | `["news"]` | Keywords to search on Rumble. Each query returns public video results. The most reliable way to gather large volumes. |
| `startUrls` | array | (empty) | Rumble channel, video, playlist, search or category URLs to scrape directly. |
| `videoIds` | array | (empty) | Raw Rumble video or embed IDs (for example v6r5abc). Each is fetched and enriched directly. |
| `resultType` | string | `"videos"` | For channel URLs: scrape the channel's `videos`, its `playlists`, or just the channel `profile`. |
| `fetchDetails` | boolean | `true` | Enrich each video with description, categories, resolutions, direct media URLs, captions and the full vote breakdown. Charged as a separate detail result. |
| `includeVideoFiles` | boolean | `true` | Include public CDN video and audio URLs. Disable for metadata-only output. |
| `sortBy` | string | `"relevance"` | Order search results: `relevance`, `date`, `views` or `rating`. |
| `uploadDateFilter` | string | `"any"` | Limit search to `today`, `week`, `month` or `year`. |
| `durationFilter` | string | `"any"` | Limit search to `short` (under 5 min) or `long` (over 20 min). |
| `maxResults` | integer | `100` | Maximum results across all queries and URLs. Set to `0` for unlimited. |

---

### Output schema

Every field below is present on every record. Fields the source does not publish for a given video are returned as `null` rather than omitted.

| Field | Type | Description |
|---|---|---|
| `recordType` | string | Record type — `video` or `channel`. |
| `id` | string | Rumble short video ID (e.g. `v7c3fea`). |
| `numericId` | number | Rumble internal numeric video ID. |
| `url` | string | Canonical video URL. |
| `title` | string | Video title. |
| `description` | string | Video description. |
| `channelName` | string | Channel name. |
| `channelUrl` | string | Channel URL. |
| `channelVerified` | boolean | Whether the channel carries a verified badge. |
| `channelFollowers` | number | Channel follower count. |
| `views` | number | View count. |
| `likes` | number | Number of up-votes. |
| `dislikes` | number | Number of down-votes. |
| `rumbleScore` | number | Net vote score (likes minus dislikes). |
| `categories` | array | Category names the video is filed under. |
| `durationSeconds` | number | Duration in seconds. |
| `durationText` | string | Duration as shown on the listing (e.g. `33:03`). |
| `uploadDate` | string | Upload date, ISO 8601. |
| `isLive` | boolean | Whether the video is a livestream. |
| `livestreamHasDvr` | boolean | Whether a livestream has DVR enabled. |
| `width` | number | Video width in pixels. |
| `height` | number | Video height in pixels. |
| `fps` | number | Frame rate. |
| `videoQuality` | string | Quality label (e.g. `Full HD`). |
| `primaryThumbnail` | string | Primary thumbnail URL. |
| `thumbnails` | array | All thumbnail variants with dimensions. |
| `thumbnailUrl` | string | Thumbnail URL (alias of primary). |
| `embedId` | string | Embed ID used by the player. |
| `embedUrl` | string | Embed URL. |
| `shareUrl` | string | Share URL. |
| `videoFiles` | array | Each available resolution: format, quality, direct URL, bitrate, size, dimensions. |
| `audioUrl` | string | Direct audio track URL. |
| `captions` | array | Available caption tracks with language and URL. |
| `hasDetail` | boolean | Whether the record was detail-enriched. |
| `source` | string | The input URL or search that produced this record. |
| `scrapedAt` | string | Timestamp of extraction, ISO 8601. |

#### Example record

```json
{
  "recordType": "video",
  "id": "v7c3fea",
  "numericId": 439908266,
  "url": "https://rumble.com/v7c3fea-bad-news-for-america.html",
  "title": "Bad News for America",
  "description": "Check out Breakfast With Beau, our morning show...",
  "channelName": "The Podcast of the Lotus Eaters",
  "channelUrl": "https://rumble.com/c/ThePodcastoftheLotusEaters",
  "channelVerified": true,
  "channelFollowers": 106000,
  "views": 5143,
  "likes": 39,
  "dislikes": 0,
  "rumbleScore": 39,
  "categories": ["News", "Politics"],
  "durationSeconds": 1983,
  "durationText": "33:03",
  "uploadDate": "2026-07-01T15:00:00+00:00",
  "isLive": false,
  "livestreamHasDvr": null,
  "width": 1920,
  "height": 1080,
  "fps": 29.97,
  "videoQuality": "Full HD",
  "primaryThumbnail": "https://1a-1791.com/video/.../small.jpg",
  "thumbnails": [{ "url": "https://1a-1791.com/video/.../small.jpg", "width": 1280, "height": 720 }],
  "thumbnailUrl": "https://1a-1791.com/video/.../small.jpg",
  "embedId": "v79wre2",
  "embedUrl": "https://rumble.com/embed/v79wre2/",
  "shareUrl": "https://rumble.com/share/v7c3fea",
  "videoFiles": [
    { "format": "mp4", "quality": "480", "url": "https://1a-1791.com/video/.../c.mp4", "bitrateKbps": 1004, "sizeBytes": 685591919, "width": 854, "height": 480 }
  ],
  "audioUrl": "https://1a-1791.com/video/.../audio.aac",
  "captions": [{ "language": "English (auto)", "url": "https://1a-1791.com/video/.../captions.vtt" }],
  "hasDetail": true,
  "source": "https://rumble.com/search/video?q=news",
  "scrapedAt": "2026-07-03T06:28:01.076Z"
}
````

***

### Examples

**Search by keyword**

```json
{ "searchQueries": ["podcast"], "maxResults": 100, "fetchDetails": true }
```

**Scrape a channel's videos**

```json
{ "startUrls": [{ "url": "https://rumble.com/c/Bongino" }], "resultType": "videos", "maxResults": 50 }
```

**Listings only, no enrichment (cheapest)**

```json
{ "searchQueries": ["news"], "fetchDetails": false, "maxResults": 500 }
```

**Daily feed of a channel's newest uploads**

```json
{ "startUrls": [{ "url": "https://rumble.com/c/Bongino" }], "resultType": "videos", "maxResults": 20, "fetchDetails": true }
```

***

### 💰 Pricing

Two result types are charged separately, so you only pay for the depth you need.

**Listing results — $1.29 per 1,000** (down to $0.49 at the highest tier)

| Results | Cost |
|---|---|
| 100 | ~$0.13 |
| 1,000 | ~$1.29 |
| 10,000 | ~$12.9 |
| 100,000 | ~$129 |

**Detail enrichment — $1.29 per 1,000** (down to $0.35 at the highest tier)

Detail enrichment adds resolutions, direct media URLs, captions and full stats. It is only charged when `fetchDetails` is enabled, and only for videos that are successfully enriched.

> Flat-rate alternatives typically charge $29–$49/month regardless of usage.

Subscription tiers lower both rates further. Use the **Max results** cap in the input to control your spend exactly.

***

### Performance

| Run size | Typical time |
|---|---|
| 100 results | 1–2 minutes |
| 1,000 results | 8–15 minutes |
| 10,000 results | 60–100 minutes |

Detail enrichment adds time per video. Disable it for the fastest, cheapest listing-only runs.

***

### Known limitations

- Channel and playlist URLs return the videos Rumble renders on the page itself, which is a small recent set. Rumble loads the full back catalogue through JavaScript that is not retrievable, so for large volumes from a creator, use search queries rather than a channel URL.
- Vote counts reflect the values shown publicly at scrape time and can lag live totals.
- Revenue figures are only published by Rumble for a subset of videos; where absent they are returned as `null`.
- Direct media URLs are time-limited by Rumble's CDN and are best used soon after extraction.
- Livestream-specific fields are `null` for standard on-demand videos, which is expected.

***

### Technical details

- **Source:** rumble.com — videos, channels, playlists, search and categories
- **Coverage:** any public Rumble video, channel or search
- **Retry:** automatic retry on network errors with exponential backoff

***

### Need a custom scraper?

**[Unfenced Group](https://www.unfencedgroup.nl)** builds Apify actors for any website — for free.

If the site you need isn't in our portfolio yet, just ask. We scope, build, and publish it at no cost to you. You only pay for results — we absorb the compute and proxy costs ourselves. Same pay-per-result pricing, same quality, same standards as every actor in this portfolio.

**Get in touch:** [www.unfencedgroup.nl](https://www.unfencedgroup.nl)

# Actor input Schema

## `searchQueries` (type: `array`):

Keywords to search on Rumble. Each query returns public video results. This is the most reliable way to gather a large number of videos.

## `startUrls` (type: `array`):

Rumble channel, video, playlist, search or category URLs to scrape directly. Channel and playlist URLs return the videos Rumble renders on the page; use search queries for larger volumes.

## `videoIds` (type: `array`):

Raw Rumble video IDs or embed IDs (for example v6r5abc). Each is fetched and enriched directly, without a search or listing step.

## `resultType` (type: `string`):

For channel URLs: scrape the channel's videos, its playlists, or just the channel profile metadata.

## `fetchDetails` (type: `boolean`):

Enrich each video with description, categories, all available resolutions, direct media and audio URLs, captions and the full vote breakdown. Charged as a separate detail result. Disable for faster, cheaper listing-only runs.

## `includeVideoFiles` (type: `boolean`):

Include public CDN video file and audio URLs. Disable for metadata-only output. Only applies when full details are fetched.

## `sortBy` (type: `string`):

Order for search results. Rumble supports relevance, upload date, view count and rating.

## `uploadDateFilter` (type: `string`):

Limit search results to videos uploaded within this period.

## `durationFilter` (type: `string`):

Limit search results to short (under 5 minutes) or long (over 20 minutes) videos.

## `maxResults` (type: `integer`):

Maximum number of results to return across all queries and URLs. Set to 0 for unlimited.

## Actor input object example

```json
{
  "searchQueries": [
    "news"
  ],
  "startUrls": [],
  "videoIds": [],
  "resultType": "videos",
  "fetchDetails": true,
  "includeVideoFiles": true,
  "sortBy": "relevance",
  "uploadDateFilter": "any",
  "durationFilter": "any",
  "maxResults": 50
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "searchQueries": [
        "news"
    ],
    "maxResults": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/rumble-scraper").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 = {
    "searchQueries": ["news"],
    "maxResults": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/rumble-scraper").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 '{
  "searchQueries": [
    "news"
  ],
  "maxResults": 50
}' |
apify call unfenced-group/rumble-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Rumble Scraper",
        "description": "Scrape Rumble videos, channels, playlists and search results. Returns views, likes, dislikes, categories, channel stats, every available resolution with direct media URLs, captions and full metadata. Filter search by date, duration and sort order. No API key required.",
        "version": "0.0",
        "x-build-id": "7uOWAZfHNxkl6Hqbs"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~rumble-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-rumble-scraper",
                "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/unfenced-group~rumble-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-rumble-scraper",
                "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/unfenced-group~rumble-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-rumble-scraper",
                "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",
                "properties": {
                    "searchQueries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Keywords to search on Rumble. Each query returns public video results. This is the most reliable way to gather a large number of videos.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Rumble channel, video, playlist, search or category URLs to scrape directly. Channel and playlist URLs return the videos Rumble renders on the page; use search queries for larger volumes.",
                        "default": [],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "videoIds": {
                        "title": "Video IDs",
                        "type": "array",
                        "description": "Raw Rumble video IDs or embed IDs (for example v6r5abc). Each is fetched and enriched directly, without a search or listing step.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "resultType": {
                        "title": "What to scrape from channels",
                        "enum": [
                            "videos",
                            "playlists",
                            "profile"
                        ],
                        "type": "string",
                        "description": "For channel URLs: scrape the channel's videos, its playlists, or just the channel profile metadata.",
                        "default": "videos"
                    },
                    "fetchDetails": {
                        "title": "Fetch full video details",
                        "type": "boolean",
                        "description": "Enrich each video with description, categories, all available resolutions, direct media and audio URLs, captions and the full vote breakdown. Charged as a separate detail result. Disable for faster, cheaper listing-only runs.",
                        "default": true
                    },
                    "includeVideoFiles": {
                        "title": "Include direct media URLs",
                        "type": "boolean",
                        "description": "Include public CDN video file and audio URLs. Disable for metadata-only output. Only applies when full details are fetched.",
                        "default": true
                    },
                    "sortBy": {
                        "title": "Sort search results",
                        "enum": [
                            "relevance",
                            "date",
                            "views",
                            "rating"
                        ],
                        "type": "string",
                        "description": "Order for search results. Rumble supports relevance, upload date, view count and rating.",
                        "default": "relevance"
                    },
                    "uploadDateFilter": {
                        "title": "Filter by upload date",
                        "enum": [
                            "any",
                            "today",
                            "week",
                            "month",
                            "year"
                        ],
                        "type": "string",
                        "description": "Limit search results to videos uploaded within this period.",
                        "default": "any"
                    },
                    "durationFilter": {
                        "title": "Filter by duration",
                        "enum": [
                            "any",
                            "short",
                            "long"
                        ],
                        "type": "string",
                        "description": "Limit search results to short (under 5 minutes) or long (over 20 minutes) videos.",
                        "default": "any"
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of results to return across all queries and URLs. Set to 0 for unlimited.",
                        "default": 100
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
