CoinAnk Liquidation Heatmap
Pricing
$10.00 / 1,000 results
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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
14 hours ago
Last modified
Categories
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
- Open the Actor on Apify.
- Select a
symbol. - Select an
interval. - Click Start.
- Read the results from the dataset.
Input
The Actor accepts two required inputs.
| Field | Required | Description |
|---|---|---|
symbol | Yes | Binance market symbol to fetch. Examples: BTCUSDT, ETHUSDT, SOLUSDT. |
interval | Yes | Time 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
| Field | Description |
|---|---|
tickSize | Price step size used by the heatmap. |
chartInterval | Candle interval used for the returned chart data. |
start | Heatmap start timestamp in milliseconds. |
end | Heatmap end timestamp in milliseconds. |
liqHeatMap.data | Heatmap cells. Each item is [time_index, price_index, liquidation_value]. |
liqHeatMap.chartTimeArray | Timestamps for the heatmap X-axis, in milliseconds. |
liqHeatMap.priceArray | Price levels for the heatmap Y-axis. |
liqHeatMap.maxLiqValue | Maximum liquidation value in the heatmap. |
Notes
symbolmust be one of the values in the Actor input dropdown.- Use full symbols such as
BTCUSDT, notBTC. - If Apify says the input is invalid, check that your
symbolandintervalvalues match the available options exactly.