Read liquidation levels
Long/short liquidation totals per daily price bucket.
/networks/{network}/liquidity-levelsLiquidity levels aggregate open positions by liquidation-price bucket, counting only positions with a known liquidation_price. Pass fromDate and toDate in YYYY-MM-DD; the window spans at most 90 days and aggregates by day.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Start date in YYYY-MM-DD format.
Example: 2026-06-01
End date in YYYY-MM-DD format. Must be ≥ fromDate.
Example: 2026-06-12
Filter to a single canonical asset.
Example: BTC
Maximum daily rows per page.
Example: 30
Cursor from the previous page's nextCursor field.
Responses
200OK
Daily liquidation-level aggregates bucketed by price.
Resolved start date of the window.
Resolved end date of the window.
Aggregation granularity — always day.
Daily aggregate rows.
Calendar day for the aggregate.
Network identifier.
Canonical asset symbol.
Network-specific asset symbol.
Display alias for the asset, when set.
Coverage scope for the row.
Price width of each liquidation bucket.
How prices are mapped to buckets, e.g. nearest.
When the day's aggregate was last updated.
Long and short totals across all buckets.
Long-side totals.
Long positions in the day.
Long notional in USD.
Short-side totals.
Short positions in the day.
Short notional in USD.
Per-bucket liquidation levels.
Position side — long or short.
Representative price of the bucket.
Positions in this bucket.
Notional in this bucket.
Lowest liquidation price in the bucket.
Highest liquidation price in the bucket.
Cursor for the next page, or null at the end.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/liquidity-levels?asset=BTC&fromDate=2026-06-01&toDate=2026-06-12&limit=1" \
-H "X-API-Key: hlsk_your_developer_key"{
"fromDate": "2026-06-01",
"toDate": "2026-06-12",
"granularity": "day",
"items": [
{
"date": "2026-06-12",
"network": "hyperliquid",
"canonicalAsset": "BTC",
"networkAssetSymbol": "BTC",
"coverage": "current",
"bucketSize": "100",
"bucketMethod": "nearest",
"totals": {
"long": { "positionCount": 118, "totalAmountUsd": "111386355" },
"short": { "positionCount": 94, "totalAmountUsd": "56587359" }
},
"levels": [
{
"side": "long",
"bucketPrice": "60400",
"positionCount": 8,
"totalAmountUsd": "12600000",
"minLiquidationPrice": "60350.5",
"maxLiquidationPrice": "60449.9"
}
]
}
],
"nextCursor": "1"
}