APEX Runner: Liquidation Pressure Signal
APEX Runner: Liquidation Pressure Signal
7000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-08
updated
Provider
apexrunner.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8D0663BBb967ebF1c047405A888DDf865f3E8854",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "7000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "trading-signals",
"description": "Hyperliquid liquidation cascade pressure signal for BTC, ETH, SOL. Samples top leveraged trader liquidation prices via HL leaderboard. Returns long/short liquidation volumes near mark price, cascade risk score 0-100, and LONG_SQUEEZE/SHORT_SQUEEZE/BALANCED bias. Fires cascade_alert when risk ≥ 50.",
"example": {
"cached_at": "2026-06-13T12:00:00+00:00",
"cascade_alert": false,
"coins": {
"BTC": {
"bias": "LONG_SQUEEZE",
"cascade_risk_score": 18,
"liq_vol_long_usd": 4200,
"liq_vol_short_usd": 1800,
"mark_price": 103200,
"near_liq_long_usd": 980,
"near_liq_short_usd": 200,
"wallets_sampled": 25
}
},
"highest_pressure_coin": "BTC",
"interpretation": "Max cascade risk 18/100 — highest pressure on BTC (LONG_SQUEEZE)",
"max_cascade_risk_score": 18
},
"info": {
"input": {
"method": "GET",
"type": "http"
},
"output": {
"cached_at": "ISO8601 timestamp",
"cascade_alert": "bool — true if any coin exceeds risk score 50",
"coins": "object — keyed by coin (BTC/ETH/SOL), each with mark_price, liq_vol_long/short_usd (total), near_liq_long/short_usd (within 5%), cascade_risk_score 0-100, bias (LONG_SQUEEZE/SHORT_SQUEEZE/BALANCED), wallets_sampled",
"example": {
"cached_at": "2026-06-13T12:00:00+00:00",
"cascade_alert": false,
"coins": {
"BTC": {
"bias": "LONG_SQUEEZE",
"cascade_risk_score": 18,
"liq_vol_long_usd": 4200,
"liq_vol_short_usd": 1800,
"mark_price": 103200,
"near_liq_long_usd": 980,
"near_liq_short_usd": 200,
"wallets_sampled": 25
},
"ETH": {
"bias": "LONG_SQUEEZE",
"cascade_risk_score": 12,
"liq_vol_long_usd": 1100,
"liq_vol_short_usd": 600,
"mark_price": 1680,
"near_liq_long_usd": 200,
"near_liq_short_usd": 80,
"wallets_sampled": 25
}
},
"highest_pressure_coin": "BTC",
"interpretation": "Max cascade risk 18/100 — highest pressure on BTC (LONG_SQUEEZE)",
"max_cascade_risk_score": 18
},
"highest_pressure_coin": "string — coin with highest cascade risk",
"interpretation": "string — plain-English summary",
"max_cascade_risk_score": "int — highest cascade risk score across all coins (0-100)",
"type": "json"
}
},
"name": "APEX Liquidation Pressure",
"outputSchema": {
"cached_at": "string",
"cascade_alert": "bool",
"coins": "object",
"highest_pressure_coin": "string",
"interpretation": "string",
"max_cascade_risk_score": "int"
},
"schema": {
"properties": {
"input": {
"properties": {
"queryParams": {
"properties": {},
"type": "object"
}
},
"required": [
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"_apex": {
"properties": {
"evolution_runs": {
"type": "integer"
},
"instance": {
"type": "string"
},
"live_capital_deployed": {
"type": "boolean"
},
"live_trading": {
"type": "boolean"
},
"signal": {
"type": "string"
},
"signal_hash": {
"type": "string"
},
"source": {
"type": "string"
},
"trades_backing_signal": {
"type": "integer"
},
"verify_at": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"cached_at": {
"type": "string"
},
"cascade_alert": {
"type": "boolean"
},
"coins": {
"additionalProperties": {
"properties": {
"bias": {
"type": "string"
},
"cascade_risk_score": {
"type": "integer"
},
"liq_vol_long_usd": {
"type": "number"
},
"liq_vol_short_usd": {
"type": "number"
},
"mark_price": {
"type": "number"
},
"near_liq_long_usd": {
"type": "integer"
},
"near_liq_short_usd": {
"type": "integer"
},
"wallets_sampled": {
"type": "integer"
}
},
"type": "object"
},
"type": "object"
},
"highest_pressure_coin": {
"type": "string"
},
"interpretation": {
"type": "string"
},
"max_cascade_risk_score": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"version": "1.0.0"
}
}Use it
curl
curl "https://apexrunner.ai/signals/liquidation-pressure" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://apexrunner.ai/signals/liquidation-pressure");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://apexrunner.ai/signals/liquidation-pressure")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/12532.json, and this resource appears in /discovery/resources and /discovery/search.