Skip to main content
GET
/
api
/
v1
/
liquidations
/
predicted
Predicted Liquidation Zones
curl --request GET \
  --url https://api.example.com/api/v1/liquidations/predicted
Returns predicted liquidation price levels computed from open interest distribution across leverage tiers. These are synthetic zones — not actual liquidation orders — that indicate where clusters of liquidations would occur if price moves to that level.

Parameters

ParameterTypeDefaultDescription
symbolstringBTCUSDTTrading pair

Example Request

curl -X GET "https://krovn.io/api/v1/liquidations/predicted?symbol=BTCUSDT" \
  -H "X-API-Key: your_api_key"

Example Response

{
  "symbol": "BTCUSDT",
  "currentPrice": 87420.50,
  "buckets": [
    {
      "price": 85100.00,
      "longLiqIntensity": 72,
      "shortLiqIntensity": 0,
      "normalizedIntensity": 72
    },
    {
      "price": 86200.00,
      "longLiqIntensity": 45,
      "shortLiqIntensity": 0,
      "normalizedIntensity": 45
    },
    {
      "price": 88800.00,
      "longLiqIntensity": 0,
      "shortLiqIntensity": 58,
      "normalizedIntensity": 58
    }
  ],
  "keyLevels": {
    "strongestLong": 85100.00,
    "strongestShort": 89500.00
  },
  "meta": {
    "positionsAnalyzed": 1250
  },
  "computedAt": "2026-03-21T12:00:00.000Z",
  "source": "synthetic_oi_leverage"
}
Intensity scores range from 0-100. Buckets below currentPrice show long liquidation risk, buckets above show short liquidation risk. Zones are recomputed every 30 minutes.