CoinGlass Liquidation Heatmap avatar

CoinGlass Liquidation Heatmap

Pricing

$10.00 / 1,000 results

Go to Apify Store
CoinGlass Liquidation Heatmap

CoinGlass Liquidation Heatmap

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.

Pricing

$10.00 / 1,000 results

Rating

0.0

(0)

Developer

Api Merge

Api Merge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

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.

FieldRequiredDescription
symbolYesMarket symbol to fetch. Examples: BTC, ETH, SOL.
modelYesHeatmap model. Options: model1, model2, model3.
intervalYesTime range. Options: 12h, 24h, 48h, 3d, 1w, 2w, 1mo, 3mo.

Input example (JSON)

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

Output

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

Output example (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

FieldDescription
y_axisPrice levels on the heatmap Y-axis.
liquidation_leverage_dataHeatmap cells. Each item is [x_index, y_index, liquidation_value].
price_candlesticksOHLCV candles. Each item is [timestamp, open, high, low, close, volume].
updateTimeTime 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.