Liquidation map (price × leverage tier)
GET/api/v1/liquidation/map
Coinglass-style liquidation map for one perpetual pair. Returns a price-grid breakdown of where leveraged positions would be liquidated, split by leverage tier (10x / 25x / 50x / 100x) and side (long below current price, short above). Built from current OI + last-24h candle entries + a fixed leverage-cohort prior. Read the assumptions field in the response for the modelling disclaimer. Cached server-side (~5s) so back-to-back polls are cheap.
Request
Query Parameters
Exchange
binanceBase asset
Quote asset
USDTHeader Parameters
Your DataMaxi+ API key
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
]
assumptions
object
tiers
object[]
buckets
object[]
Cumulative totals — separately surfaced so the FE doesn't have to re-sum to drive the cumulative line series (Coinglass-style).
{
"assumptions": {
"entrySamples": 0,
"entryWindow": "string",
"longShareOfOi": 0,
"mmr": 0,
"tiers": [
{
"leverage": 0,
"share": 0
}
]
},
"base": "string",
"buckets": [
{
"l100xUsd": 0,
"l10xUsd": 0,
"l25xUsd": 0,
"l50xUsd": 0,
"price": 0,
"side": "string",
"totalUsd": 0
}
],
"cumulativeLongUsd": 0,
"cumulativeShortUsd": 0,
"currentPrice": 0,
"exchange": "string",
"generatedAt": 0,
"quote": "string",
"symbol": "string",
"totalOiUsd": 0
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error specifies the error message
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error specifies the error message
{
"error": "string"
}