CoinGlass Liquidation Map API
Pricing
from $10.00 / 1,000 liquidation maps
CoinGlass Liquidation Map API
Fetch CoinGlass liquidation map data for futures trading pairs. Search supported instruments, select a range, and get clean JSON output showing mapped liquidation price levels, liquidation size, and leverage ratio
Pricing
from $10.00 / 1,000 liquidation maps
Rating
0.0
(0)
Developer
Api Merge
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
9 hours ago
Last modified
Categories
Share
What does CoinGlass Liquidation Map do?
CoinGlass Liquidation Map helps you search supported futures instruments and fetch liquidation map data for a selected instrument and range. Use search_symbols to find the correct symbol value, then send that value to liquidation_map to get clean JSON liquidation map output.
Why use CoinGlass Liquidation Map?
Use this Actor when you need structured liquidation map data for dashboards, market analysis, alerts, or automated workflows.
- Search futures instruments by keyword
- Fetch liquidation map data by instrument and range
- Use separate pay-per-event pricing for symbol searches and liquidation map data
- Export results as JSON, CSV, Excel, HTML, or RSS
How to use CoinGlass Liquidation Map
- Open the Actor on Apify.
- Select
search_symbolsto find an instrument, orliquidation_mapto fetch map data. - Fill the matching input fields.
- Click Start.
- Read the output from the default dataset.
Input
| Field | Required | Default | Description |
|---|---|---|---|
mode | Yes | search_symbols | Operation to run. Supported values: search_symbols, liquidation_map. |
keyword | No | empty | Optional search keyword used with search_symbols. Leave it empty to return the default futures symbol list. |
symbol | Required for liquidation_map | Binance_BTCUSDT | Symbol value returned by search_symbols, such as Binance_BTCUSDT. |
range | Required for liquidation_map | 1d | Liquidation map range. Supported values: 1d, 7d, 30d, 90d, 180d, 365d. |
Search symbols input example
{"mode": "search_symbols","keyword": "btc"}
keyword is optional. You can also leave it empty when using search_symbols.
Search symbols output example
{"success": true,"message": "Futures symbols fetched successfully.","mode": "search_symbols","keyword": "btc","data": [{"base_asset": "BTC","quote_asset": "USDT","exchange": "Binance","symbol": "Binance_BTCUSDT"}]}
Use the symbol value from the search_symbols response as the symbol input for liquidation_map.
Liquidation map input example
{"mode": "liquidation_map","symbol": "Binance_BTCUSDT","range": "1d"}
Liquidation map output example
{"success": true,"message": "Liquidation map data fetched successfully.","mode": "liquidation_map","symbol": "Binance_BTCUSDT","range": "1d","data": {"48935": [ // Liquidation price[48935, // Liquidation price1579370.77, // Liquidation level25, // Leverage rationull]]}}
Data table
| Field | Description |
|---|---|
success | true when the Actor completed cleanly. |
message | Human-readable result or warning message. |
mode | Operation used for the run. |
keyword | Search keyword, when search_symbols is used. |
symbol | Search result symbol used for liquidation_map. |
range | Liquidation map range, when liquidation_map is used. |
data | Symbol search results or liquidation map data. |
data.<price> | Liquidation price level key. |
data.<price>[0][0] | Liquidation price. |
data.<price>[0][1] | Liquidation level. |
data.<price>[0][2] | Leverage ratio. |
Pay-per-event pricing
This Actor uses separate charge events for each operation:
| Event name | Used for |
|---|---|
SEARCH_SYMBOLS | Searching futures instruments. |
LIQUIDATION_MAP | Fetching liquidation map data. |
Tips
- Run
search_symbolsfirst if you do not know the exactsymbol. - Use the returned
symbolas thesymbolinput forliquidation_map. - Use longer ranges such as
90d,180d, or365dfor wider liquidation map snapshots.