# CoinGlass Coin Markets API (`api_merge/coinglass-coin-markets`) Actor

Fetch CoinGlass coin markets data for any supported exchange. Select an exchange and page to get clean JSON output with market symbols, current prices, funding rates, market cap, open interest, price changes, volume changes, long/short ratios, and liquidation metrics.

- **URL**: https://apify.com/api\_merge/coinglass-coin-markets.md
- **Developed by:** [Api Merge](https://apify.com/api_merge) (community)
- **Categories:** Integrations, Automation
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$7.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

### What does Coinglass Coin Markets do?

Coinglass Coin Markets fetches **coin market metrics** from Coinglass for a selected exchange and result page. It returns a clean JSON response with market-wide derivatives fields such as current price, open interest, funding-rate averages, price changes, volume changes, long/short ratios, and liquidation totals.

Run the Actor with `all_exchanges` to get the broad market list, or choose a specific exchange such as `Binance`, `Bybit`, `OKX`, `Kraken`, or `Coinbase`. Results are saved to the default Apify dataset and can be accessed through the Apify API, scheduled runs, integrations, or dataset exports.

### Why use Coinglass Coin Markets?

Use this Actor when you need structured Coinglass market data for analysis, monitoring, or automation. It is useful for:

- Monitoring crypto derivatives market activity across exchanges
- Feeding dashboards, alerts, or trading tools
- Tracking open interest, liquidation, volume, and long/short metrics
- Building repeatable market snapshots with Apify schedules
- Exporting market data as JSON, CSV, Excel, HTML, or RSS

### How to use Coinglass Coin Markets

1. Open the Actor on Apify.
2. Select an `exchange`, or keep `all_exchanges`.
3. Set the `page` number.
4. Click **Start**.
5. Read the output from the default dataset.

### Input

The Actor accepts two required inputs.

| Field | Required | Default | Description |
| --- | --- | --- | --- |
| `exchange` | Yes | `all_exchanges` | Exchange filter. Supported values: `all_exchanges`, `Binance`, `Bybit`, `OKX`, `Crypto.com`, `CoinEx`, `CME`, `Deribit`, `Bitfinex`, `dYdX`, `Bitmex`, `HTX`, `Kraken`, `Bitget`, `BingX`, `Gate`, `KuCoin`, `WhiteBIT`, `MEXC`, `Bitunix`, `Hyperliquid`, `Coinbase`. |
| `page` | Yes | `1` | Result page number. Each page returns up to 20 markets. |

### Input example

```json
{
    "exchange": [
        "all_exchanges"
    ],
    "page": 1
}
````

Multiple exchanges can also be selected together.

```json
{
    "exchange": [
        "Binance",
        "Bybit"
    ],
    "page": 1
}
```

If `all_exchanges` is selected together with specific exchanges, the specific exchanges are used.

### Output

The Actor writes one dataset item containing request metadata, the total count, and a `markets` array.

### Output example

The comments below explain each market field. The actual dataset output is returned as regular JSON without comments.

```json
{
    "success": true,
    "message": "Coin markets data fetched successfully.",
    "totalCount": 971,
    "markets": [
        {
            "symbol": "BTC", // Cryptocurrency symbol
            "current_price": 84773.6, // Current price in USD
            "avg_funding_rate_by_oi": 0.00196, // Average funding rate weighted by open interest
            "avg_funding_rate_by_vol": 0.002647, // Average funding rate weighted by volume
            "market_cap_usd": 1683310500117.051, // Market capitalization in USD
            "open_interest_market_cap_ratio": 0.0327, // Ratio of open interest to market capitalization
            "open_interest_usd": 55002072334.9376, // Open interest in USD
            "open_interest_quantity": 648525.0328, // Open interest quantity, number of contracts
            "open_interest_volume_ratio": 0.7936, // Ratio of open interest to volume
            "price_change_percent_5m": -0.02, // Price change percentage in the last 5 minutes
            "price_change_percent_15m": 0.06, // Price change percentage in the last 15 minutes
            "price_change_percent_30m": 0.03, // Price change percentage in the last 30 minutes
            "price_change_percent_1h": -0.1, // Price change percentage in the last 1 hour
            "price_change_percent_4h": -0.15, // Price change percentage in the last 4 hours
            "price_change_percent_12h": 0.15, // Price change percentage in the last 12 hours
            "price_change_percent_24h": 1.06, // Price change percentage in the last 24 hours
            "open_interest_change_percent_5m": 0, // Open interest change percentage in the last 5 minutes
            "open_interest_change_percent_15m": 0.04, // Open interest change percentage in the last 15 minutes
            "open_interest_change_percent_30m": 0, // Open interest change percentage in the last 30 minutes
            "open_interest_change_percent_1h": -0.01, // Open interest change percentage in the last 1 hour
            "open_interest_change_percent_4h": 0.17, // Open interest change percentage in the last 4 hours
            "open_interest_change_percent_24h": 4.58, // Open interest change percentage in the last 24 hours
            "volume_change_percent_5m": -0.03, // Volume change percentage in the last 5 minutes
            "volume_change_percent_15m": -0.73, // Volume change percentage in the last 15 minutes
            "volume_change_percent_30m": -1.13, // Volume change percentage in the last 30 minutes
            "volume_change_percent_1h": -2.33, // Volume change percentage in the last 1 hour
            "volume_change_percent_4h": -5.83, // Volume change percentage in the last 4 hours
            "volume_change_percent_24h": -26.38, // Volume change percentage in the last 24 hours
            "volume_change_usd_1h": 69310404660.3795, // Volume change in USD in the last 1 hour
            "volume_change_usd_4h": -4290959532.4414644, // Volume change in USD in the last 4 hours
            "volume_change_usd_24h": -24835757605.82467, // Volume change in USD in the last 24 hours
            "long_short_ratio_5m": 1.2523, // Long/short ratio in the last 5 minutes
            "long_short_ratio_15m": 0.9928, // Long/short ratio in the last 15 minutes
            "long_short_ratio_30m": 1.0695, // Long/short ratio in the last 30 minutes
            "long_short_ratio_1h": 1.0068, // Long/short ratio in the last 1 hour
            "long_short_ratio_4h": 1.0504, // Long/short ratio in the last 4 hours
            "long_short_ratio_12h": 1.0317, // Long/short ratio in the last 12 hours
            "long_short_ratio_24h": 1.0313, // Long/short ratio in the last 24 hours
            "liquidation_usd_1h": 33621.85192, // Total liquidation amount in USD in the last 1 hour
            "long_liquidation_usd_1h": 22178.4681, // Long liquidation amount in USD in the last 1 hour
            "short_liquidation_usd_1h": 11443.38382, // Short liquidation amount in USD in the last 1 hour
            "liquidation_usd_4h": 222210.47117, // Total liquidation amount in USD in the last 4 hours
            "long_liquidation_usd_4h": 179415.77249, // Long liquidation amount in USD in the last 4 hours
            "short_liquidation_usd_4h": 42794.69868, // Short liquidation amount in USD in the last 4 hours
            "liquidation_usd_12h": 11895453.392145, // Total liquidation amount in USD in the last 12 hours
            "long_liquidation_usd_12h": 10223351.23772, // Long liquidation amount in USD in the last 12 hours
            "short_liquidation_usd_12h": 1672102.154425, // Short liquidation amount in USD in the last 12 hours
            "liquidation_usd_24h": 27519292.973646, // Total liquidation amount in USD in the last 24 hours
            "long_liquidation_usd_24h": 17793322.595016, // Long liquidation amount in USD in the last 24 hours
            "short_liquidation_usd_24h": 9725970.37863 // Short liquidation amount in USD in the last 24 hours
        }
    ]
}
```

### Data table

| Field | Description |
| --- | --- |
| `success` | `true` when the Actor completed cleanly, including free-limit notifications. |
| `message` | Human-readable result or warning message. |
| `totalCount` | Total number of markets available for the filter. |
| `markets` | Array of market objects. |
| `markets.symbol` | Cryptocurrency symbol. |
| `markets.current_price` | Current price in USD. |
| `markets.avg_funding_rate_by_oi` | Average funding rate weighted by open interest. |
| `markets.avg_funding_rate_by_vol` | Average funding rate weighted by volume. |
| `markets.market_cap_usd` | Market capitalization in USD. |
| `markets.open_interest_market_cap_ratio` | Ratio of open interest to market capitalization. |
| `markets.open_interest_usd` | Open interest in USD. |
| `markets.open_interest_quantity` | Open interest quantity, number of contracts. |
| `markets.open_interest_volume_ratio` | Ratio of open interest to volume. |
| `markets.price_change_percent_5m` | Price change percentage in the last 5 minutes. |
| `markets.price_change_percent_15m` | Price change percentage in the last 15 minutes. |
| `markets.price_change_percent_30m` | Price change percentage in the last 30 minutes. |
| `markets.price_change_percent_1h` | Price change percentage in the last 1 hour. |
| `markets.price_change_percent_4h` | Price change percentage in the last 4 hours. |
| `markets.price_change_percent_12h` | Price change percentage in the last 12 hours. |
| `markets.price_change_percent_24h` | Price change percentage in the last 24 hours. |
| `markets.open_interest_change_percent_5m` | Open interest change percentage in the last 5 minutes. |
| `markets.open_interest_change_percent_15m` | Open interest change percentage in the last 15 minutes. |
| `markets.open_interest_change_percent_30m` | Open interest change percentage in the last 30 minutes. |
| `markets.open_interest_change_percent_1h` | Open interest change percentage in the last 1 hour. |
| `markets.open_interest_change_percent_4h` | Open interest change percentage in the last 4 hours. |
| `markets.open_interest_change_percent_24h` | Open interest change percentage in the last 24 hours. |
| `markets.volume_change_percent_5m` | Volume change percentage in the last 5 minutes. |
| `markets.volume_change_percent_15m` | Volume change percentage in the last 15 minutes. |
| `markets.volume_change_percent_30m` | Volume change percentage in the last 30 minutes. |
| `markets.volume_change_percent_1h` | Volume change percentage in the last 1 hour. |
| `markets.volume_change_percent_4h` | Volume change percentage in the last 4 hours. |
| `markets.volume_change_percent_24h` | Volume change percentage in the last 24 hours. |
| `markets.volume_change_usd_1h` | Volume change in USD in the last 1 hour. |
| `markets.volume_change_usd_4h` | Volume change in USD in the last 4 hours. |
| `markets.volume_change_usd_24h` | Volume change in USD in the last 24 hours. |
| `markets.long_short_ratio_5m` | Long/short ratio in the last 5 minutes. |
| `markets.long_short_ratio_15m` | Long/short ratio in the last 15 minutes. |
| `markets.long_short_ratio_30m` | Long/short ratio in the last 30 minutes. |
| `markets.long_short_ratio_1h` | Long/short ratio in the last 1 hour. |
| `markets.long_short_ratio_4h` | Long/short ratio in the last 4 hours. |
| `markets.long_short_ratio_12h` | Long/short ratio in the last 12 hours. |
| `markets.long_short_ratio_24h` | Long/short ratio in the last 24 hours. |
| `markets.liquidation_usd_1h` | Total liquidation amount in USD in the last 1 hour. |
| `markets.long_liquidation_usd_1h` | Long liquidation amount in USD in the last 1 hour. |
| `markets.short_liquidation_usd_1h` | Short liquidation amount in USD in the last 1 hour. |
| `markets.liquidation_usd_4h` | Total liquidation amount in USD in the last 4 hours. |
| `markets.long_liquidation_usd_4h` | Long liquidation amount in USD in the last 4 hours. |
| `markets.short_liquidation_usd_4h` | Short liquidation amount in USD in the last 4 hours. |
| `markets.liquidation_usd_12h` | Total liquidation amount in USD in the last 12 hours. |
| `markets.long_liquidation_usd_12h` | Long liquidation amount in USD in the last 12 hours. |
| `markets.short_liquidation_usd_12h` | Short liquidation amount in USD in the last 12 hours. |
| `markets.liquidation_usd_24h` | Total liquidation amount in USD in the last 24 hours. |
| `markets.long_liquidation_usd_24h` | Long liquidation amount in USD in the last 24 hours. |
| `markets.short_liquidation_usd_24h` | Short liquidation amount in USD in the last 24 hours. |

### How much does it cost to scrape Coinglass coin markets?

The Actor is lightweight and designed for quick market snapshots. Free Apify plan users are limited to 5 runs per UTC day by this Actor. When the daily limit is reached, the Actor writes a warning item to the dataset.

### Tips and advanced options

- Use `exchange: "all_exchanges"` for a general market snapshot.
- Increase `page` to paginate through more results.
- Schedule the Actor hourly or daily to create market time series snapshots.
- Download the dataset in JSON, CSV, Excel, HTML, or RSS depending on your workflow.

# Actor input Schema

## `exchange` (type: `array`):

Select one or more exchanges to filter coin markets. Use all\_exchanges to return markets across all supported exchanges.

## `page` (type: `integer`):

Result page number. Each page returns up to 20 markets.

## Actor input object example

```json
{
  "exchange": [
    "all_exchanges"
  ],
  "page": 1
}
```

# Actor output Schema

## `dataset` (type: `string`):

Dataset items with coin markets data or a free-limit warning.

# 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 = {
    "exchange": [
        "all_exchanges"
    ],
    "page": 1
};

// Run the Actor and wait for it to finish
const run = await client.actor("api_merge/coinglass-coin-markets").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 = {
    "exchange": ["all_exchanges"],
    "page": 1,
}

# Run the Actor and wait for it to finish
run = client.actor("api_merge/coinglass-coin-markets").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 '{
  "exchange": [
    "all_exchanges"
  ],
  "page": 1
}' |
apify call api_merge/coinglass-coin-markets --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "CoinGlass Coin Markets API",
        "description": "Fetch CoinGlass coin markets data for any supported exchange. Select an exchange and page to get clean JSON output with market symbols, current prices, funding rates, market cap, open interest, price changes, volume changes, long/short ratios, and liquidation metrics.",
        "version": "0.0",
        "x-build-id": "JDRq4E2POkU4P4Eob"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/api_merge~coinglass-coin-markets/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-api_merge-coinglass-coin-markets",
                "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/api_merge~coinglass-coin-markets/runs": {
            "post": {
                "operationId": "runs-sync-api_merge-coinglass-coin-markets",
                "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/api_merge~coinglass-coin-markets/run-sync": {
            "post": {
                "operationId": "run-sync-api_merge-coinglass-coin-markets",
                "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": [
                    "exchange",
                    "page"
                ],
                "properties": {
                    "exchange": {
                        "title": "Exchanges",
                        "minItems": 1,
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Select one or more exchanges to filter coin markets. Use all_exchanges to return markets across all supported exchanges.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "all_exchanges",
                                "Binance",
                                "Bybit",
                                "OKX",
                                "Crypto.com",
                                "CoinEx",
                                "CME",
                                "Deribit",
                                "Bitfinex",
                                "dYdX",
                                "Bitmex",
                                "HTX",
                                "Kraken",
                                "Bitget",
                                "BingX",
                                "Gate",
                                "KuCoin",
                                "WhiteBIT",
                                "MEXC",
                                "Bitunix",
                                "Hyperliquid",
                                "Coinbase"
                            ],
                            "enumTitles": [
                                "All exchanges",
                                "Binance",
                                "Bybit",
                                "OKX",
                                "Crypto.com",
                                "CoinEx",
                                "CME",
                                "Deribit",
                                "Bitfinex",
                                "dYdX",
                                "Bitmex",
                                "HTX",
                                "Kraken",
                                "Bitget",
                                "BingX",
                                "Gate",
                                "KuCoin",
                                "WhiteBIT",
                                "MEXC",
                                "Bitunix",
                                "Hyperliquid",
                                "Coinbase"
                            ]
                        },
                        "default": [
                            "all_exchanges"
                        ]
                    },
                    "page": {
                        "title": "Page",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Result page number. Each page returns up to 20 markets.",
                        "default": 1
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
