# CoinGlass Liquidation Heatmap (`api_merge/coinglass-liquidation-heatmap`) Actor

Fetch CoinGlass liquidation heatmap data for any supported market symbol. Select a symbol, model, and time interval to get clean JSON output with price levels, liquidation leverage data, candlesticks, and update time.

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

## Pricing

$10.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 Liquidation Heatmap do?

Coinglass Liquidation Heatmap fetches liquidation heatmap data for a selected market symbol such as `BTC`, `ETH`, or `SOL`.

Pick a symbol, choose a model, select a time interval, and run the Actor. The result is saved to the default Apify dataset as clean JSON.

### Why use it?

Use this Actor to access aggregated liquidation heatmap data calculated from market data and liquidation leverage levels.

It is useful for:

- Tracking liquidation levels for crypto markets
- Feeding dashboards or trading tools
- Comparing heatmap data across different intervals
- Automating repeated Coinglass data collection with Apify schedules or API calls

### How to use

1. Open the Actor on Apify.
2. Select a `symbol`.
3. Select a `model`.
4. Select an `interval`.
5. Click **Start**.
6. Read the results from the dataset.

### Input

The Actor accepts three required inputs.

| Field | Required | Description |
| --- | --- | --- |
| `symbol` | Yes | Market symbol to fetch. Examples: `BTC`, `ETH`, `SOL`. |
| `model` | Yes | Heatmap model. Options: `model1`, `model2`, `model3`. |
| `interval` | Yes | Time range. Options: `12h`, `24h`, `48h`, `3d`, `1w`, `2w`, `1mo`, `3mo`. |

### Input example (JSON)

```json
{
    "symbol": "BTC",
    "model": "model1",
    "interval": "24h"
}
````

### Output

The Actor returns one JSON object with the main heatmap data.

### Output example (JSON)

```json
{
    "y_axis": [47968.54, 48000.0, 48031.46],
    "liquidation_leverage_data": [
        [5, 124, 2288867.26],
        [6, 123, 318624.82],
        [7, 122, 1527940.12]
    ],
    "price_candlesticks": [
        [
            1722676500,
            "61486",
            "61596.4",
            "61434.4",
            "61539.9",
            "63753192.1129"
        ],
        [
            1722676800,
            "61539.9",
            "61610.0",
            "61480.0",
            "61590.5",
            "42311820.8720"
        ]
    ],
    "updateTime": 1779381262573
}
```

### Output fields

| Field | Description |
| --- | --- |
| `y_axis` | Price levels on the heatmap Y-axis. |
| `liquidation_leverage_data` | Heatmap cells. Each item is `[x_index, y_index, liquidation_value]`. |
| `price_candlesticks` | OHLCV candles. Each item is `[timestamp, open, high, low, close, volume]`. |
| `updateTime` | Time when Coinglass last updated the data, in milliseconds. |

### Notes

- `symbol` must be one of the values in the Actor input dropdown.
- Use `BTC`, not `BTCUSDT` or `Binance_BTCUSDT`.
- If Apify says the input is invalid, check that your `symbol`, `model`, and `interval` values match the available options exactly.

# Actor input Schema

## `symbol` (type: `string`):

Select the cryptocurrency symbol to fetch liquidation heatmap data for.

## `model` (type: `string`):

Select the Coinglass liquidation heatmap model.

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

Select the liquidation heatmap time range.

## Actor input object example

```json
{
  "symbol": "BTC",
  "model": "model1",
  "interval": "24h"
}
```

# Actor output Schema

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

Dataset items with liquidation heatmap arrays and update time.

# 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 = {
    "symbol": "BTC",
    "model": "model1",
    "interval": "24h"
};

// Run the Actor and wait for it to finish
const run = await client.actor("api_merge/coinglass-liquidation-heatmap").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 = {
    "symbol": "BTC",
    "model": "model1",
    "interval": "24h",
}

# Run the Actor and wait for it to finish
run = client.actor("api_merge/coinglass-liquidation-heatmap").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 '{
  "symbol": "BTC",
  "model": "model1",
  "interval": "24h"
}' |
apify call api_merge/coinglass-liquidation-heatmap --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "CoinGlass Liquidation Heatmap",
        "description": "Fetch CoinGlass liquidation heatmap data for any supported market symbol. Select a symbol, model, and time interval to get clean JSON output with price levels, liquidation leverage data, candlesticks, and update time.",
        "version": "0.0",
        "x-build-id": "xcpjJl8ikxjLkBktV"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/api_merge~coinglass-liquidation-heatmap/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-api_merge-coinglass-liquidation-heatmap",
                "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-liquidation-heatmap/runs": {
            "post": {
                "operationId": "runs-sync-api_merge-coinglass-liquidation-heatmap",
                "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-liquidation-heatmap/run-sync": {
            "post": {
                "operationId": "run-sync-api_merge-coinglass-liquidation-heatmap",
                "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": [
                    "symbol",
                    "model",
                    "interval"
                ],
                "properties": {
                    "symbol": {
                        "title": "Symbol",
                        "enum": [
                            "BTC",
                            "ETH",
                            "SOL",
                            "HYPE",
                            "XRP",
                            "ZEC",
                            "DOGE",
                            "BNB",
                            "XAUT",
                            "SUI",
                            "XAU",
                            "ADA",
                            "BCH",
                            "TON",
                            "SP500",
                            "LINK",
                            "LAB",
                            "CL",
                            "ASTER",
                            "XAG",
                            "NEAR",
                            "AVAX",
                            "LTC",
                            "TAO",
                            "TRX",
                            "XYZ100",
                            "BRENTOIL",
                            "AAVE",
                            "LIT",
                            "PAXG",
                            "SILVER",
                            "UNI",
                            "PEPE",
                            "MU",
                            "DOT",
                            "ONDO",
                            "NVDA",
                            "WLD",
                            "WLFI",
                            "ENA",
                            "FIL",
                            "XMR",
                            "1000PEPE",
                            "H",
                            "ATOM",
                            "FARTCOIN",
                            "GOLD",
                            "PUMP",
                            "ARB",
                            "VVV",
                            "HBAR",
                            "TRUMP",
                            "SNDK",
                            "SKYAI",
                            "MON",
                            "INJ",
                            "XLM",
                            "CRV",
                            "XPL",
                            "ZRO",
                            "ICP",
                            "PENGU",
                            "BSB",
                            "TSLA",
                            "APT",
                            "ETC",
                            "WIF",
                            "DASH",
                            "M",
                            "OP",
                            "VIRTUAL",
                            "PENDLE",
                            "CRCL",
                            "FF",
                            "INTC",
                            "GOOGL",
                            "RIVER",
                            "KITE",
                            "CHZ",
                            "EDEN",
                            "PROVE",
                            "FET",
                            "SAHARA",
                            "BZ",
                            "SEI",
                            "RENDER",
                            "1000BONK",
                            "RAVE",
                            "LDO",
                            "POL",
                            "SPX500",
                            "BEAT",
                            "TIA",
                            "ORDI",
                            "EDGE",
                            "MNT",
                            "币安人生",
                            "STRK",
                            "TRIA",
                            "JUP",
                            "FIDA",
                            "SPCX",
                            "CHIP",
                            "KAS",
                            "ETHFI",
                            "ALGO",
                            "SHIB",
                            "CBRS",
                            "USOIL",
                            "BILL",
                            "JTO",
                            "KAITO",
                            "B",
                            "APE",
                            "CC",
                            "DRAM",
                            "GALA",
                            "AXS",
                            "BIO",
                            "IP",
                            "META",
                            "MSTR",
                            "GUA",
                            "BSV",
                            "COPPER",
                            "MEGA",
                            "PIEVERSE",
                            "USELESS",
                            "MORPHO",
                            "MSFT",
                            "GWEI",
                            "AMD",
                            "AMZN",
                            "DYDX",
                            "STABLE",
                            "SKHX",
                            "AERO",
                            "ARC",
                            "BERA",
                            "AAPL",
                            "TRB",
                            "ZBT",
                            "EWY",
                            "SPX",
                            "VET",
                            "ZEN",
                            "UB",
                            "1000SHIB",
                            "SAND",
                            "QQQ",
                            "SIREN",
                            "AVNT",
                            "PIPPIN",
                            "GRASS",
                            "ESPORTS",
                            "LYN",
                            "CFX",
                            "HUMA",
                            "SKY",
                            "JELLYJELLY",
                            "NIGHT",
                            "PUMPFUN",
                            "CRO",
                            "HOME",
                            "BARD",
                            "TONCOIN",
                            "S",
                            "BANANAS31",
                            "COMP",
                            "GIGGLE",
                            "PYTH",
                            "CYS",
                            "0G",
                            "ORCA",
                            "ENJ",
                            "CAKE",
                            "PNUT",
                            "ALCH",
                            "SPY",
                            "SPK",
                            "kPEPE",
                            "SOON",
                            "2Z",
                            "USDC",
                            "AT",
                            "ONT",
                            "TA",
                            "SYRUP",
                            "POPCAT",
                            "BASED",
                            "NATGAS",
                            "DEXE",
                            "EIGEN",
                            "UKOIL",
                            "OPEN",
                            "MYX",
                            "RUNE",
                            "FOLKS",
                            "ZK",
                            "QNT",
                            "STX",
                            "BAS",
                            "APR",
                            "ENS",
                            "TRADOOR",
                            "LINEA",
                            "ATH",
                            "BABY",
                            "STO",
                            "OKB",
                            "SIGN",
                            "BTCDOM",
                            "TAG",
                            "JASMY",
                            "BLUR",
                            "PLUME",
                            "NXPC",
                            "NIL",
                            "AIGENSYN",
                            "DUSK",
                            "PARTI",
                            "XPIN",
                            "ENSO",
                            "KAIA",
                            "BAN",
                            "KERNEL",
                            "1000LUNC",
                            "FLOW",
                            "LITE",
                            "W",
                            "HOOD",
                            "LUNC",
                            "AIN",
                            "IMX",
                            "JST",
                            "ORCL",
                            "IOTA",
                            "STORJ",
                            "COAI",
                            "AR",
                            "TSM",
                            "TAC",
                            "DYM",
                            "SAGA",
                            "ROBO",
                            "NEO",
                            "BOME",
                            "SAPIEN",
                            "GRT",
                            "IRYS",
                            "BLESS",
                            "NOT",
                            "SUSHI",
                            "Q",
                            "MANA",
                            "GENIUS",
                            "MOODENG",
                            "ZAMA",
                            "POWER",
                            "COIN",
                            "API3",
                            "NAS100",
                            "MOVE",
                            "JPY",
                            "SNX",
                            "TRUTH",
                            "SWARMS",
                            "EUR",
                            "DEEP",
                            "FHE",
                            "SENT",
                            "ROSE",
                            "FIGHT",
                            "KAT",
                            "AKT",
                            "GMX",
                            "STBL",
                            "BABA",
                            "BGB",
                            "CFG",
                            "SPACE",
                            "EDU",
                            "OPG",
                            "SUN",
                            "LIGHT",
                            "B2",
                            "OPN",
                            "HANA",
                            "REZ",
                            "XPD",
                            "ZIL",
                            "XTZ",
                            "HYPER",
                            "DOGS",
                            "PLTR",
                            "KGEN",
                            "THETA",
                            "BLUAI",
                            "COLLECT",
                            "ARIA",
                            "MERL",
                            "FLOKI",
                            "TURBO",
                            "EVAA",
                            "PEOPLE",
                            "TWT",
                            "SOXL",
                            "US",
                            "ALLO",
                            "MRVL",
                            "CAD",
                            "MANTA",
                            "EGLD",
                            "LAYER",
                            "AIA",
                            "GBP",
                            "C",
                            "PRL",
                            "ZEREBRO",
                            "MET",
                            "LPT",
                            "A",
                            "MITO",
                            "NAORIS",
                            "INIT",
                            "PLAY",
                            "1INCH",
                            "AUCTION",
                            "GUN",
                            "WAL",
                            "PIXEL",
                            "INX",
                            "PROMPT",
                            "CATI",
                            "ARKM",
                            "WCT",
                            "GPS",
                            "1000RATS",
                            "WTI",
                            "YFI",
                            "NMR",
                            "BRETT",
                            "JCT",
                            "AXL",
                            "IO",
                            "VANA",
                            "GMT",
                            "BANK",
                            "MAGMA",
                            "SPACEX",
                            "OFC",
                            "RKLB",
                            "FORM",
                            "MMT",
                            "RESOLV",
                            "ZORA",
                            "AIXBT",
                            "UAI",
                            "HOLO",
                            "FOGO",
                            "AZTEC",
                            "TNSR",
                            "MINA",
                            "SKR",
                            "AIO",
                            "XPT",
                            "KAVA",
                            "KSM",
                            "ICNT",
                            "FILECOIN",
                            "VELVET",
                            "XVG",
                            "CRWV",
                            "ZKP",
                            "LA",
                            "FLUX",
                            "ME",
                            "QCOM",
                            "MASK",
                            "BAT",
                            "SOPH",
                            "BR",
                            "SMSN",
                            "BB",
                            "MOVR",
                            "SHIB1000",
                            "HIGH",
                            "SOMI",
                            "KNC",
                            "YB",
                            "ALT",
                            "RSR",
                            "RIF",
                            "AIOT",
                            "IDOL",
                            "YGG",
                            "PURR",
                            "ON",
                            "ACH",
                            "BREV",
                            "ZETA",
                            "PROS",
                            "DRIFT",
                            "AVAAI",
                            "WET",
                            "4",
                            "SUPER",
                            "RECALL",
                            "GOAT",
                            "POLYX",
                            "UMA",
                            "QTUM",
                            "CHF",
                            "GAS",
                            "MAGIC",
                            "ANKR",
                            "AKE",
                            "PROM",
                            "CELO",
                            "ANIME",
                            "CVX",
                            "INTCSTOCK",
                            "1000FLOKI",
                            "GRIFFAIN",
                            "CLO",
                            "MELANIA",
                            "PTB",
                            "MEME",
                            "OGN",
                            "AWE",
                            "ESP",
                            "RAY",
                            "BONK",
                            "BLEND",
                            "NEIRO",
                            "ZRX",
                            "XAN",
                            "CGPT",
                            "BANANA",
                            "USTC",
                            "OG",
                            "USUAL",
                            "ID",
                            "TREE",
                            "AEVO",
                            "FLOCK",
                            "ZKC",
                            "IN",
                            "XAI",
                            "XNY",
                            "CHILLGUY",
                            "CROSS",
                            "STG",
                            "MEW",
                            "ASTR",
                            "SXT",
                            "COOKIE",
                            "MUBARAK",
                            "THE",
                            "ORDER",
                            "CSCOSTOCK",
                            "SSV",
                            "VANRY",
                            "APEX",
                            "BEAMX",
                            "CYBER",
                            "ALICE",
                            "LUMIA",
                            "F",
                            "TRUMPOFFICIAL",
                            "RONIN",
                            "PHAROS",
                            "RVN",
                            "KMNO",
                            "BIGTIME",
                            "AGLD",
                            "NVIDIA",
                            "BULLA",
                            "ERA",
                            "HMSTR",
                            "METIS",
                            "SPORTFUN",
                            "BIRB",
                            "NOM",
                            "TOWNS",
                            "MANTRA",
                            "FLUID",
                            "ARPA",
                            "CRCLX",
                            "CLANKER",
                            "EURUSD",
                            "XBR",
                            "SKL",
                            "TST",
                            "NFLX",
                            "kBONK",
                            "HEMI",
                            "WOO",
                            "ORCLSTOCK",
                            "ORBS",
                            "DOLO",
                            "BTR",
                            "HAEDAL",
                            "SAFE",
                            "XDC",
                            "BRKBSTOCK",
                            "G",
                            "SQD",
                            "PHA",
                            "RED",
                            "ALPINE",
                            "SONIC",
                            "PURRDAT",
                            "MIRA",
                            "HIMS",
                            "DOOD",
                            "ILV",
                            "EUL",
                            "COW",
                            "IOST",
                            "GNO",
                            "XCN",
                            "ZBCN",
                            "AGT",
                            "ARM",
                            "TUT",
                            "SOLV",
                            "SHELL",
                            "1000CHEEMS",
                            "TAKE",
                            "GLM",
                            "US30",
                            "ASR",
                            "GIGA",
                            "LUNA",
                            "DIA",
                            "RATS",
                            "NVDAX",
                            "COTI",
                            "1000000MOG",
                            "JP225",
                            "VELO",
                            "ACT",
                            "D",
                            "CETUS",
                            "ETHBTC",
                            "ONE",
                            "ACE",
                            "SFP",
                            "RON",
                            "CORE",
                            "TSLAX",
                            "ARK",
                            "BIANRENSHENG",
                            "NEWT",
                            "SPYX",
                            "AMATSTOCK",
                            "HFT",
                            "TURTLE",
                            "MBOX",
                            "TRUST",
                            "STEEM",
                            "USAR",
                            "ASTEROID",
                            "VELODROME",
                            "CARV",
                            "C98",
                            "KOMA",
                            "WAXP",
                            "MOCA",
                            "TAIKO",
                            "CHR",
                            "MAV",
                            "BEAM",
                            "TRUMPSOL",
                            "COINBASE",
                            "ACX",
                            "BAND",
                            "龙虾",
                            "CKB",
                            "LQTY",
                            "IOTX",
                            "我踏马来了",
                            "PUMPBTC",
                            "HIVE",
                            "BROCCOLIF3B",
                            "MAVIA",
                            "AVGO",
                            "1MBABYDOGE",
                            "PORTAL",
                            "ONG",
                            "LLY",
                            "LISTA",
                            "AMDSTOCK",
                            "ELSA",
                            "ACU",
                            "SCR",
                            "AMZNSTOCK",
                            "WAVES",
                            "BROCCOLI",
                            "EPIC",
                            "CTSI",
                            "LUNA2",
                            "PLATINUM",
                            "ICX",
                            "TOSHI",
                            "VINE",
                            "ANTHROPIC",
                            "BABASTOCK",
                            "AERGO",
                            "SANTOS",
                            "RARE",
                            "MRVLSTOCK",
                            "LSK",
                            "BEL",
                            "MONAD",
                            "NEIROCTO",
                            "T",
                            "FRAX",
                            "GTC",
                            "MUSTOCK",
                            "SNDKSTOCK",
                            "10000SATS",
                            "AI",
                            "CVC",
                            "XCU",
                            "NFP",
                            "PLAYSOUT",
                            "VIC",
                            "SCRT",
                            "SOLAYER",
                            "OPENAI",
                            "MTL",
                            "UP",
                            "TESLA",
                            "COHR",
                            "XVS",
                            "AVA",
                            "BLAST",
                            "GOOGLX",
                            "ETHW",
                            "RPL",
                            "VTHO",
                            "SLP",
                            "HNT",
                            "QQQX",
                            "RLC",
                            "FLR",
                            "PEAQ",
                            "HOT",
                            "TSTBSC",
                            "WHITEWHALE",
                            "ALLINDEX",
                            "BICO",
                            "1000CAT",
                            "STAR",
                            "1000XEC",
                            "POWR",
                            "BRKB",
                            "1000SATS",
                            "MLN",
                            "BNT",
                            "PALLADIUM",
                            "kSHIB",
                            "CRWVSTOCK",
                            "ROAM",
                            "JPMSTOCK",
                            "ORCLX",
                            "USDE",
                            "QQQSTOCK",
                            "NEX",
                            "B3",
                            "TRY",
                            "BROCCOLI714",
                            "BMT",
                            "JOE",
                            "TLM",
                            "COS",
                            "KCS",
                            "PUNDIX",
                            "BMNR",
                            "URNM",
                            "SOXS",
                            "1000000BABYDOGE",
                            "AAPLX",
                            "TQQQ",
                            "COSTSTOCK",
                            "DOG",
                            "LRC",
                            "LIGHTER",
                            "BINANCELIFE",
                            "AUD",
                            "GOOGLSTOCK",
                            "ES",
                            "METAX",
                            "SYN",
                            "SPELL",
                            "ZEST",
                            "RAYSOL",
                            "SATS",
                            "EWJ",
                            "BP",
                            "ZKJ",
                            "REDSTONE",
                            "CTK",
                            "USD1",
                            "HEI",
                            "SATO",
                            "LITESTOCK",
                            "RLS",
                            "1000000BOB",
                            "CELR",
                            "GME",
                            "MSTRSTOCK",
                            "SQQQ",
                            "GODS",
                            "NBIS",
                            "NG",
                            "CRCLSTOCK",
                            "PLTRX",
                            "RAYDIUM",
                            "QCOMSTOCK",
                            "VSTOCK",
                            "FUTUON",
                            "SLVON",
                            "METASTOCK",
                            "COST",
                            "WOTAMALAILE",
                            "NGAS",
                            "CTC",
                            "AAOI",
                            "kLUNC",
                            "DODOX",
                            "ZKSYNC",
                            "OPENLEDGER",
                            "XLE",
                            "ULTIMA",
                            "ROBINHOOD",
                            "MCD",
                            "MEMECOIN",
                            "MSFTSTOCK",
                            "1000NEIROCTO",
                            "LONGXIA",
                            "MSTRX",
                            "FTT",
                            "WARD",
                            "USDKRW",
                            "OL",
                            "BNLIFE",
                            "1000TURBO",
                            "GENSYN",
                            "BITLIGHT",
                            "OPENEDEN",
                            "NBISSTOCK",
                            "TIMI",
                            "MIRANETWORK",
                            "FIGHTID",
                            "NOMINA",
                            "HYPERLANE",
                            "AIOZ",
                            "HYUNDAI",
                            "USDJPY",
                            "SPACECOIN",
                            "ALTCOIN",
                            "METEORA",
                            "10000NEX",
                            "PENGUIN",
                            "REAL",
                            "1000TOSHI",
                            "BUTTCOIN",
                            "SKHYNIXUSD",
                            "REQ",
                            "1000BTT",
                            "JDSTOCK",
                            "COIN50",
                            "OWL",
                            "TESTICLE",
                            "XUEQIU",
                            "ASP",
                            "EDGEX",
                            "AMZNX",
                            "PAYP",
                            "COINX",
                            "USDG",
                            "BRL",
                            "RIVN",
                            "ZM",
                            "USDCHF",
                            "ARMSTOCK",
                            "GLMR",
                            "GOBLIN",
                            "AVGOSTOCK",
                            "MCDSTOCK",
                            "OKLO",
                            "1MCHEEMS",
                            "BIRD",
                            "AMP",
                            "ST",
                            "KIN",
                            "GT",
                            "kFLOKI",
                            "IQ",
                            "RKC",
                            "GITLAWB",
                            "BULLSOL",
                            "SHLD",
                            "HOOLI",
                            "AEON",
                            "JD",
                            "UNITAS",
                            "FAI",
                            "WBT",
                            "PLTRSTOCK",
                            "WMT",
                            "AGI",
                            "ELIZAOS",
                            "MP",
                            "UNC",
                            "UPEG",
                            "BOBA",
                            "DOLPHIN",
                            "SOSO",
                            "HANTA",
                            "FUTU",
                            "MEZO",
                            "USDUCPUMP",
                            "PUFFER",
                            "1000TAG",
                            "SCAM",
                            "KAIO",
                            "EITHER",
                            "AAPLSTOCK",
                            "MAXXING",
                            "BABYSHARK",
                            "10000NAT",
                            "SHARE",
                            "GLWSTOCK",
                            "FREEDOMMONEY",
                            "SUP",
                            "LRCXSTOCK",
                            "US500",
                            "BURNIE",
                            "MAGASOL",
                            "FLNC",
                            "JDON",
                            "BE",
                            "TLT",
                            "STXSTOCK",
                            "DBR",
                            "NPC",
                            "TQQQX",
                            "DISSTOCK",
                            "JPM",
                            "FUTUSTOCK",
                            "NFLXSTOCK",
                            "US100",
                            "OXYSTOCK",
                            "XOMSTOCK",
                            "XEC",
                            "ABBVSTOCK",
                            "CSCO",
                            "LUNANEW",
                            "SNT",
                            "EURC",
                            "RDDTSTOCK",
                            "FUN",
                            "GLW",
                            "ASML",
                            "IONQSTOCK",
                            "HDSTOCK",
                            "PANWSTOCK",
                            "IONQ",
                            "WMTSTOCK",
                            "XION",
                            "HK50",
                            "V",
                            "RKLBSTOCK",
                            "WDC",
                            "LEAD",
                            "CVNASTOCK",
                            "HIMSSTOCK",
                            "UNH",
                            "RDDT",
                            "NKESTOCK",
                            "BDX",
                            "KR200",
                            "SC",
                            "NOWSTOCK",
                            "RLUSD",
                            "kNEIRO",
                            "URA",
                            "DODO",
                            "IRENSTOCK",
                            "BA",
                            "LLYSTOCK",
                            "INTUSTOCK",
                            "TSMSTOCK",
                            "EWT",
                            "WHEAT",
                            "ASTSSTOCK",
                            "MASTOCK",
                            "KLACSTOCK",
                            "HOODX",
                            "ZIG",
                            "BOBBOB",
                            "KWEB",
                            "STRC",
                            "USO",
                            "IBMSTOCK",
                            "BABYDOGE",
                            "VRT",
                            "TXNSTOCK",
                            "HPOS10I",
                            "FLY",
                            "UBER",
                            "BMNRSTOCK",
                            "COPSTOCK",
                            "XOM",
                            "WL",
                            "SOONNETWORK",
                            "GBPUSD",
                            "OXY",
                            "WDCSTOCK",
                            "ASTS",
                            "MOG",
                            "COHRSTOCK",
                            "RNBW",
                            "SOXX",
                            "CHEEMS",
                            "TROLLSOL",
                            "PYR",
                            "GESTOCK",
                            "CRDO",
                            "XIAOMI",
                            "1000000CHEEMS",
                            "HD",
                            "BGSC",
                            "VIX",
                            "NOKSTOCK",
                            "AMAT",
                            "GMESTOCK",
                            "PYPLSTOCK",
                            "SPOTSTOCK",
                            "TENCENT",
                            "10000CAT",
                            "SAMSUNGUSD",
                            "DIS",
                            "AXTI",
                            "VZSTOCK",
                            "ASMLSTOCK",
                            "LMTSTOCK",
                            "IBM",
                            "INFQ",
                            "CBRSSTOCK",
                            "SAMSUNGSTOCK",
                            "HYUNDAIUSD",
                            "GEV",
                            "APRO",
                            "APLD",
                            "CRWDSTOCK",
                            "ONDSSTOCK",
                            "BIO1",
                            "FIGSTOCK",
                            "NASDAQ100",
                            "MBABYDOGE",
                            "DEGO",
                            "ACTSOL",
                            "FIGHT1",
                            "CSTOCK",
                            "SPCXSTOCK",
                            "ADBESTOCK",
                            "JPN225",
                            "PDDSTOCK",
                            "SMCI",
                            "PANW",
                            "IWM",
                            "WFCSTOCK",
                            "IR",
                            "SHOPSTOCK",
                            "TSMON",
                            "RTXSTOCK",
                            "VRTSTOCK",
                            "TW88",
                            "CSPR",
                            "GE",
                            "SNOWSTOCK",
                            "TXN",
                            "EWZ",
                            "CAT",
                            "APP",
                            "UNHSTOCK",
                            "BTX",
                            "SUPRA",
                            "ARCSOL",
                            "SKY1",
                            "RDNT",
                            "ALUMINUM",
                            "UBERSTOCK",
                            "SMCISTOCK",
                            "BASTOCK",
                            "CVXSTOCK",
                            "WOJAK",
                            "USARSTOCK",
                            "VCX",
                            "ADBE",
                            "TRAC",
                            "BACSTOCK",
                            "RDDTON",
                            "LWLG",
                            "SYS",
                            "GEVSTOCK",
                            "ACN",
                            "FLOCK1",
                            "NICKEL",
                            "SKHYNIXSTOCK",
                            "PGSTOCK",
                            "LMT",
                            "DAM",
                            "XCH",
                            "OXT",
                            "PHB",
                            "NIO",
                            "CRMSTOCK",
                            "DENT",
                            "DFIN",
                            "KOSTOCK",
                            "BOB",
                            "USDCAD",
                            "PAYPSTOCK",
                            "FIG",
                            "RDW",
                            "HARRY",
                            "BUILDONBOB",
                            "USDT",
                            "SPACE1",
                            "KLAC",
                            "IAU",
                            "POND",
                            "DELL",
                            "INDA",
                            "IREN",
                            "COP",
                            "CEG",
                            "POET",
                            "ZINC",
                            "INTCX",
                            "BVIX",
                            "老子",
                            "ANTA",
                            "GVZ",
                            "RTX",
                            "OGFAN",
                            "POLYMARKET",
                            "AUDUSD",
                            "TRU",
                            "CMI",
                            "AVL",
                            "BTGOON",
                            "DEGEN",
                            "KOPN",
                            "BTT",
                            "草根文化",
                            "ASTEROIDETH",
                            "BX",
                            "ETN",
                            "SBUXSTOCK",
                            "MAGS",
                            "TROLL",
                            "BTW",
                            "DKNG",
                            "NZDUSD",
                            "PYPL",
                            "AINBSC",
                            "GAMESTOP",
                            "MINIMAX",
                            "KO",
                            "EWH",
                            "EBAY",
                            "FIO",
                            "UK100",
                            "AURASOL",
                            "FLNCSTOCK",
                            "MEITUAN",
                            "PG",
                            "AUDIO",
                            "US2000",
                            "ANDURIL",
                            "TEL",
                            "AGG",
                            "DSYNC",
                            "EVIX",
                            "OUST",
                            "POD",
                            "TFUEL",
                            "CARDS",
                            "KUAISHOU",
                            "NOC",
                            "MANYU",
                            "PSG",
                            "MDB",
                            "BAR",
                            "DFDVX",
                            "MAMO",
                            "MEMES",
                            "XNI",
                            "LMWR",
                            "GLDX",
                            "XUNCE",
                            "ALEO",
                            "VIXINDEX",
                            "WIN",
                            "GER40",
                            "GAIB",
                            "BMEX",
                            "1000NOT",
                            "ONDS",
                            "DDOG",
                            "USDUC",
                            "PEP",
                            "CHECK",
                            "STRAX",
                            "LFI",
                            "BOTZ",
                            "FN",
                            "PUNDIAI",
                            "NXT",
                            "1000WOJAK",
                            "XAL",
                            "IKA",
                            "NOCK",
                            "BULL",
                            "NEIRO1",
                            "SOYBEAN",
                            "CCJ",
                            "ALL",
                            "ZHIPU",
                            "MAGAALIENS",
                            "SUNAC",
                            "AKESO",
                            "ABBV",
                            "APH",
                            "ANET",
                            "CAR",
                            "ALB",
                            "KALSHI",
                            "HSCHKD",
                            "ASTEROIDSOL",
                            "IEFA",
                            "UP2",
                            "AUS200",
                            "GD",
                            "XZN",
                            "ASTEROID1",
                            "XIONGMAOTOU",
                            "REDO",
                            "BWXT",
                            "TIBBIR",
                            "AVICI",
                            "XNO",
                            "DEEPTECH",
                            "HSBC",
                            "UTYA",
                            "NAT",
                            "CLS",
                            "ADI",
                            "HPE",
                            "SNOW",
                            "1000NEX",
                            "XPB",
                            "GEELY",
                            "POPMART",
                            "SBP",
                            "PDD",
                            "LENOVO",
                            "BAY",
                            "CARR",
                            "PONKE",
                            "MEXC",
                            "COTTON",
                            "JCI",
                            "FLORKETH",
                            "CITIC",
                            "SPACEXIPO",
                            "BABYSHAR",
                            "TRAHK",
                            "BASED1",
                            "SUGAR",
                            "ANTHROPICIPO",
                            "JNJ",
                            "OMI",
                            "OPENAIIPO",
                            "FSLR",
                            "SNEK",
                            "VRA",
                            "BSU",
                            "IMU",
                            "FWOG",
                            "SAFE1",
                            "LOT"
                        ],
                        "type": "string",
                        "description": "Select the cryptocurrency symbol to fetch liquidation heatmap data for.",
                        "default": "BTC"
                    },
                    "model": {
                        "title": "Model",
                        "enum": [
                            "model1",
                            "model2",
                            "model3"
                        ],
                        "type": "string",
                        "description": "Select the Coinglass liquidation heatmap model.",
                        "default": "model1"
                    },
                    "interval": {
                        "title": "Interval",
                        "enum": [
                            "12h",
                            "24h",
                            "48h",
                            "3d",
                            "1w",
                            "2w",
                            "1mo",
                            "3mo"
                        ],
                        "type": "string",
                        "description": "Select the liquidation heatmap time range.",
                        "default": "24h"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
