# Binance Market Data Scraper — Spot Prices, 24h Stats & Klines (`bovi/binance-scraper`) Actor

Scrape live Binance spot market data via the official public API. Supports all trading pairs, 24h statistics (price change, high/low, volume), and candlestick/kline history for any interval. No auth required. Pay per result.

- **URL**: https://apify.com/bovi/binance-scraper.md
- **Developed by:** [Vitalii Bondarev](https://apify.com/bovi) (community)
- **Categories:** Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.87 / 1,000 tickers

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

## Binance Market Data Scraper — Spot, 24h Stats & Klines | No Auth | from $0.50/1K

Built for quant traders, algo-strategy builders, and crypto dashboards that need clean, structured Binance OHLCV data for backtesting — without a paid exchange data subscription.

**No authentication required.** 3,500+ trading pairs. from **$0.50/1,000 tickers** or **$1.00/1,000 klines** (Pay Per Event).

Scrape live Binance spot market data via the official public REST API. No authentication required.

### What it does

Three modes:

| Mode | What you get | Use case |
|---|---|---|
| `tickers` (default) | Full 24h rolling stats: price, change%, high, low, volume, trade count | Market monitoring, alerts, analysis |
| `symbols` | Lightweight last price only | Quick price snapshots for many pairs |
| `klines` | OHLCV candlestick history for any interval (1m → 1M) | Backtesting, charting, quant strategies |

Supports all 3,500+ Binance spot trading pairs. Fetch one symbol, a curated list, or all pairs in a single run.

### Output schema

#### Tickers / Symbols (modes: tickers, symbols)

| Field | Type | Description |
|---|---|---|
| `symbol` | string | Trading pair (e.g. BTCUSDT) |
| `base_asset` | string | Base coin (e.g. BTC) |
| `quote_asset` | string | Quote coin (e.g. USDT) |
| `last_price` | number | Last traded price |
| `price_change_24h` | number | Absolute price change over 24h |
| `price_change_pct_24h` | number | Percentage price change over 24h |
| `high_24h` | number | 24h high price |
| `low_24h` | number | 24h low price |
| `volume_24h` | number | Base asset volume over 24h |
| `quote_volume_24h` | number | Quote asset volume over 24h |
| `open_price` | number | Opening price at start of 24h window |
| `count_trades` | integer | Number of trades in 24h window |
| `parse_confidence` | number | Data quality score (0.0–1.0) |
| `warnings` | array | Machine-readable warning codes |

#### Klines (mode: klines)

| Field | Type | Description |
|---|---|---|
| `symbol` | string | Trading pair |
| `base_asset` | string | Base coin |
| `quote_asset` | string | Quote coin |
| `open_time` | string | ISO 8601 UTC candle open time |
| `close_time` | string | ISO 8601 UTC candle close time |
| `open_price` | number | Opening price |
| `high_price` | number | High price |
| `low_price` | number | Low price |
| `close_price` | number | Closing price |
| `volume` | number | Base asset volume |
| `quote_volume` | number | Quote asset volume |
| `count_trades` | integer | Number of trades in candle |
| `taker_buy_base_volume` | number | Taker buy base asset volume |
| `taker_buy_quote_volume` | number | Taker buy quote asset volume |
| `interval` | string | Candle interval (1d, 1h, etc.) |
| `parse_confidence` | number | Data quality score |
| `warnings` | array | Warning codes |

### Input options

| Option | Default | Description |
|---|---|---|
| `mode` | `tickers` | What to scrape: `tickers`, `symbols`, or `klines` |
| `symbols` | `[]` | Trading pairs to fetch. Empty = fetch ALL active pairs |
| `klineSymbol` | `BTCUSDT` | Symbol for klines mode |
| `interval` | `1d` | Kline interval: `1m` `3m` `5m` `15m` `30m` `1h` `2h` `4h` `6h` `8h` `12h` `1d` `3d` `1w` `1M` |
| `maxItems` | `500` | Max records. 0 = no limit |
| `quoteAssetFilter` | `` | (Advanced) Filter all-pairs by quote asset (e.g. `USDT`) |
| `activeOnly` | `true` | (Advanced) Skip non-TRADING status pairs |
| `klineLimit` | `100` | (Advanced) Candles per klines request (max 1000) |

### Example inputs

**All USDT pairs (24h stats):**
```json
{
  "mode": "tickers",
  "symbols": [],
  "quoteAssetFilter": "USDT",
  "maxItems": 0
}
````

**Top 3 pairs (quick price):**

```json
{
  "mode": "symbols",
  "symbols": ["BTCUSDT", "ETHUSDT", "SOLUSDT"]
}
```

**BTC daily candlesticks (last 365 days):**

```json
{
  "mode": "klines",
  "klineSymbol": "BTCUSDT",
  "interval": "1d",
  "klineLimit": 365
}
```

### Pricing example

Pay per result (PPE). Charged per record pushed:

| Fetch | Records | Cost |
|---|---|---|
| 3 specific pairs (tickers mode) | 3 | ~$0.002 |
| All USDT pairs (tickers, ~500 pairs) | 500 | ~$0.25 |
| 100 daily BTC klines | 100 | ~$0.10 |
| All 3,500+ active spot pairs | ~3,500 | ~$1.75 |

### FAQ

**Do I need a Binance account or API key?**
No. All endpoints used are public Binance market data — no authentication of any kind is required.

**What formats can I export to?**
JSON, CSV, and Excel via the Apify dataset download or the REST API. Kline data maps directly to pandas DataFrame for backtesting.

**Can I schedule this to run automatically?**
Yes. Set up a schedule in Apify Console or trigger via webhook from n8n / Make. Common use: run tickers mode every minute for a live dashboard.

**What if a symbol returns empty or an error?**
Invalid symbols are skipped with a log warning — the actor does not crash. The `warnings` field in each record flags data-quality issues. Failed symbols appear in the `failedDetails` output key.

### Notes

- **No authentication required.** All endpoints used are public Binance market data.
- **Geo-availability:** api.binance.com is accessible globally. If geo-blocked in your region, the actor will use data-api.binance.vision as a fallback automatically.
- **Rate limits:** Binance uses weight-based rate limiting. Single-symbol fetches use minimal weight; fetching all 3,500+ pairs at once uses higher weight but is still within public limits.
- **parse\_confidence:** every record includes `parse_confidence` (0.0–1.0) so downstream pipelines can filter low-quality rows without manual inspection.
- **Not affiliated with Binance.** This actor uses the official Binance public REST API documented at https://binance-docs.github.io/apidocs/

### Competitor comparison

| Scraper | Approach | Price | Klines? | No auth? |
|---|---|---|---|---|
| **This actor** | Official Binance public API | PPE $0.50–1/1K | yes | yes |
| binance-price-fetcher (typical) | 3rd-party lib | rental $9/mo | no | sometimes |
| exchange-data-scraper | HTML scraping | flat fee | no | no |

### Use with AI agents (MCP)

This actor is callable as a **tool by AI agents** (Claude Desktop, Cursor, VS Code, n8n, LangGraph, CrewAI, or any MCP-compatible client) via Apify's hosted Model Context Protocol server. An agent uses it to **look up live Binance spot prices, 24h stats, or OHLCV kline history mid-conversation** — e.g. "what is the current BTCUSDT price?", "show me the last 30 daily candles for ETHUSDT".

Point your MCP client at this tool:

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

Minimal input an agent can send:

```json
{ "mode": "symbols", "symbols": ["BTCUSDT", "ETHUSDT"] }
```

### Also in this finance family

- [CoinGecko Scraper](https://apify.com/bovi/coingecko-scraper) — live crypto prices, market caps, all coins
- [Yahoo Finance Scraper](https://apify.com/bovi/yahoo-finance-scraper) — stocks, ETFs, crypto, indices, forex
- [Dexscreener Scraper](https://apify.com/bovi/dexscreener-scraper) — DEX pairs, on-chain token prices across 50+ chains
- [DefiLlama Scraper](https://apify.com/bovi/defillama-scraper) — DeFi protocol TVL + yield pool APY
- [ECB Exchange Rates Scraper](https://apify.com/bovi/exchange-rates-scraper) — historical FX rates back to 1999

### Integrations

Built for quant traders and algo-strategy builders feeding OHLCV and 24h market stats into backtesting pipelines — the JSON/dataset output drops into the tools you already run, no glue code:

- **n8n / Make / Zapier** — trigger a run or pipe every new dataset item into 500+ apps (Google Sheets, Airtable, Slack, HubSpot, your database) with no code: [n8n](https://docs.apify.com/platform/integrations/n8n), [Make](https://docs.apify.com/platform/integrations/make), [Zapier](https://docs.apify.com/platform/integrations/zapier).
- **Webhooks** — fire your own endpoint the moment a run finishes, to push results straight into your pipeline ([docs](https://docs.apify.com/platform/integrations/webhooks)).
- **MCP server** — expose this actor as a tool to Claude, Cursor, or any [MCP client](https://mcp.apify.com) so an AI agent can pull this data mid-conversation ([guide](https://blog.apify.com/how-to-use-mcp/)).
- **API & SDKs** — fetch the dataset as JSON, CSV, or Excel through the Apify REST API or the Python / JS SDKs.

See all [Apify integrations](https://apify.com/integrations).

# Actor input Schema

## `mode` (type: `string`):

What to scrape. tickers: 24h statistics for one or more trading pairs (or all pairs). symbols: simple last price for one or more pairs (lightweight). klines: OHLCV candlestick history for a single pair.

## `symbols` (type: `array`):

Binance trading pair symbols to fetch (e.g. BTCUSDT, ETHUSDT, SOLUSDT). Leave empty to fetch ALL active spot pairs (modes: tickers or symbols only). Case-insensitive.

## `klineSymbol` (type: `string`):

Trading pair for klines mode (e.g. BTCUSDT). Required when mode=klines.

## `interval` (type: `string`):

Candlestick interval for klines mode. Valid values: 1m 3m 5m 15m 30m 1h 2h 4h 6h 8h 12h 1d 3d 1w 1M

## `maxItems` (type: `integer`):

Maximum total records to output. 0 = no limit (fetch all available). Default 500.

## `quoteAssetFilter` (type: `string`):

Advanced: When fetching all pairs (symbols list empty), filter to a specific quote asset. Examples: USDT, BTC, ETH, BNB. Leave empty to include all quote assets.

## `activeOnly` (type: `boolean`):

Advanced: When fetching all pairs, only include pairs with TRADING status (skip BREAK/PRE\_TRADING pairs). Default true.

## `klineLimit` (type: `integer`):

Advanced: Number of candles to return in klines mode (max 1000 per Binance API). Default 100.

## Actor input object example

```json
{
  "mode": "tickers",
  "symbols": [
    "BTCUSDT",
    "ETHUSDT",
    "SOLUSDT"
  ],
  "klineSymbol": "BTCUSDT",
  "interval": "1d",
  "maxItems": 500,
  "activeOnly": true,
  "klineLimit": 100
}
```

# Actor output Schema

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

Dataset containing Binance Scraper records (symbol, base\_asset, quote\_asset, last\_price, price\_change\_24h, price\_change\_pct\_24h, high\_24h, low\_24h, volume\_24h, count\_trades, parse\_confidence).

# 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 = {
    "mode": "tickers",
    "symbols": [
        "BTCUSDT",
        "ETHUSDT",
        "SOLUSDT"
    ],
    "klineSymbol": "BTCUSDT",
    "interval": "1d",
    "maxItems": 500,
    "activeOnly": true,
    "klineLimit": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("bovi/binance-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 = {
    "mode": "tickers",
    "symbols": [
        "BTCUSDT",
        "ETHUSDT",
        "SOLUSDT",
    ],
    "klineSymbol": "BTCUSDT",
    "interval": "1d",
    "maxItems": 500,
    "activeOnly": True,
    "klineLimit": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("bovi/binance-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 '{
  "mode": "tickers",
  "symbols": [
    "BTCUSDT",
    "ETHUSDT",
    "SOLUSDT"
  ],
  "klineSymbol": "BTCUSDT",
  "interval": "1d",
  "maxItems": 500,
  "activeOnly": true,
  "klineLimit": 100
}' |
apify call bovi/binance-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Binance Market Data Scraper — Spot Prices, 24h Stats & Klines",
        "description": "Scrape live Binance spot market data via the official public API. Supports all trading pairs, 24h statistics (price change, high/low, volume), and candlestick/kline history for any interval. No auth required. Pay per result.",
        "version": "0.1",
        "x-build-id": "MwJ5AASKRv9Qk2Dpb"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/bovi~binance-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-bovi-binance-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/bovi~binance-scraper/runs": {
            "post": {
                "operationId": "runs-sync-bovi-binance-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/bovi~binance-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-bovi-binance-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": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "tickers",
                            "symbols",
                            "klines"
                        ],
                        "type": "string",
                        "description": "What to scrape. tickers: 24h statistics for one or more trading pairs (or all pairs). symbols: simple last price for one or more pairs (lightweight). klines: OHLCV candlestick history for a single pair."
                    },
                    "symbols": {
                        "title": "Trading pairs",
                        "type": "array",
                        "description": "Binance trading pair symbols to fetch (e.g. BTCUSDT, ETHUSDT, SOLUSDT). Leave empty to fetch ALL active spot pairs (modes: tickers or symbols only). Case-insensitive.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "klineSymbol": {
                        "title": "Kline symbol",
                        "type": "string",
                        "description": "Trading pair for klines mode (e.g. BTCUSDT). Required when mode=klines."
                    },
                    "interval": {
                        "title": "Kline interval",
                        "enum": [
                            "1m",
                            "3m",
                            "5m",
                            "15m",
                            "30m",
                            "1h",
                            "2h",
                            "4h",
                            "6h",
                            "8h",
                            "12h",
                            "1d",
                            "3d",
                            "1w",
                            "1M"
                        ],
                        "type": "string",
                        "description": "Candlestick interval for klines mode. Valid values: 1m 3m 5m 15m 30m 1h 2h 4h 6h 8h 12h 1d 3d 1w 1M"
                    },
                    "maxItems": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum total records to output. 0 = no limit (fetch all available). Default 500.",
                        "default": 500
                    },
                    "quoteAssetFilter": {
                        "title": "Quote asset filter",
                        "type": "string",
                        "description": "Advanced: When fetching all pairs (symbols list empty), filter to a specific quote asset. Examples: USDT, BTC, ETH, BNB. Leave empty to include all quote assets."
                    },
                    "activeOnly": {
                        "title": "Active pairs only",
                        "type": "boolean",
                        "description": "Advanced: When fetching all pairs, only include pairs with TRADING status (skip BREAK/PRE_TRADING pairs). Default true."
                    },
                    "klineLimit": {
                        "title": "Kline candle limit",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Advanced: Number of candles to return in klines mode (max 1000 per Binance API). 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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
