CoinAnk Liquidation Heatmap avatar

CoinAnk Liquidation Heatmap

Pricing

$10.00 / 1,000 results

Go to Apify Store
CoinAnk Liquidation Heatmap

CoinAnk Liquidation Heatmap

Fetches CoinAnk liquidation heatmap data for the selected crypto symbol

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

14 hours ago

Last modified

Share

What does CoinAnk Liquidation Heatmap do?

CoinAnk Liquidation Heatmap fetches liquidation heatmap data for a selected Binance futures symbol such as BTCUSDT, ETHUSDT, or SOLUSDT.

Pick a symbol, select a time interval, and run the Actor. The Actor calls the CoinAnk proxy Worker and saves the cleaned response to the default Apify dataset as JSON.

Why use it?

Use this Actor to collect CoinAnk liquidation heatmap data in a repeatable Apify workflow.

It is useful for:

  • Tracking liquidation heatmap levels for Binance crypto markets
  • Feeding dashboards, alerts, or trading tools
  • Comparing heatmap data across supported intervals
  • Automating repeated CoinAnk data collection with Apify schedules or API calls

How to use

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

Input

The Actor accepts two required inputs.

FieldRequiredDescription
symbolYesBinance market symbol to fetch. Examples: BTCUSDT, ETHUSDT, SOLUSDT.
intervalYesTime range. Options: 12h, 1d, 3d, 1w, 2w, 1M, 3M, 6M, 1Y.

Input example (JSON)

{
"symbol": "BTCUSDT",
"interval": "12h"
}

Output

The Actor returns one JSON object with the cleaned CoinAnk heatmap data.

Output example (JSON)

{
"tickSize": 25,
"chartInterval": "5m",
"start": 1779429000000,
"end": 1779472200000,
"liqHeatMap": {
"data": [
["0", "0", "0"],
["0", "1", "0"],
["0", "2", "0"]
],
"chartTimeArray": [
1779429000000,
1779429300000,
1779429600000
],
"priceArray": [
73800,
73850,
73900
],
"maxLiqValue": 13284152
}
}

Output fields

FieldDescription
tickSizePrice step size used by the heatmap.
chartIntervalCandle interval used for the returned chart data.
startHeatmap start timestamp in milliseconds.
endHeatmap end timestamp in milliseconds.
liqHeatMap.dataHeatmap cells. Each item is [time_index, price_index, liquidation_value].
liqHeatMap.chartTimeArrayTimestamps for the heatmap X-axis, in milliseconds.
liqHeatMap.priceArrayPrice levels for the heatmap Y-axis.
liqHeatMap.maxLiqValueMaximum liquidation value in the heatmap.

Notes

  • symbol must be one of the values in the Actor input dropdown.
  • Use full symbols such as BTCUSDT, not BTC.
  • If Apify says the input is invalid, check that your symbol and interval values match the available options exactly.