Liquidity
Measures the relative strength of predicted liquidation levels to compare zones of potential liquidation pressure. Available in two modes:
- Anchored: Aggregated at fixed intervals (daily, 4-hourly, or hourly, UTC).
- Non-Anchored: Based on the latest snapshot.
For each mode, it highlights:
- Relative long vs. short strength
- Delta: Imbalance between long and short liquidation levels
This helps spot where liquidation clusters may be more influential and whether positioning skews to one side. Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the Bearer. Example:Authorization: Bearer ********************
Token URL: https://auth-api.dev.hyblockcapital.com/oauth2/token
Add parameter in header x-api-key
Example:x-api-key: ********************
or
Request Code Samples
curl --location --request GET 'https://api.dev.hyblockcapital.com/v2/liqLevelsSize?coin&exchange&timeframe&limit&startTime&endTime&sort&advanceFilter' \
--header 'Authorization: Bearer <token>' \
--header 'x-api-key: <api-key>'
Responses
{
"data": [
{
"liqLevelSizeDelta": 815816946.7504778,
"longLiqLevelSize": 2260055193.931666,
"openDate": 1757937600,
"shortLiqLevelSize": 1444238247.181188
}
],
"metadata": {
"exchanges": [
"binance_perp_stable"
]
}
}
Modified at 2025-12-31 05:42:54