Forward liquidation cluster map + recent prints for all 17 crypto assets
Forward liquidation cluster map + recent prints for all 17 crypto assets. Part A: estimated liq price levels for 5x/10x/25x/50x leverage bands, modeled from open interest and mark price — no new upstream source. Part B: real liquidation prints from OKX public API (no auth). Returns cluster map, nearest_long/short clusters, squeeze_bias, and honest disclaimers. Supports BTC/ETH/SOL/BNB/XRP/DOGE/ADA/AVAX/LINK/DOT/LTC/TRX/BCH/ATOM/NEAR/APT/HYPE-USD. Pay-per-call via x402.
20000 (raw units)
price
12
calls / 30d
1
unique payers
2026-09-18
updated
Provider
kronossignals.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x36038e1d712c5e39f35952164ec58ec2b96caee7",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "POST",
"pathParams": {},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-01-01T00:15:00.000Z",
"asset": "BTC-USD",
"available": true,
"cluster_map": {
"disclaimer": "ESTIMATED clusters from OI + leverage-band modeling. NOT confirmed orders.",
"long_clusters": [
{
"distance_pct": -0.98,
"estimated_oi_fraction": 0.051,
"leverage": 50,
"liq_price": 106425
},
{
"distance_pct": -3.84,
"estimated_oi_fraction": 0.1275,
"leverage": 25,
"liq_price": 103375
}
],
"model_note": "OI distributed: 5x=35%, 10x=30%, 25x=25%, 50x=10%. Long/short split adjusted by funding rate.",
"nearest_long_liq_cluster": {
"distance_pct": -0.98,
"liq_price": 106425
},
"nearest_short_liq_cluster": {
"distance_pct": 1,
"liq_price": 108575
},
"short_clusters": [
{
"distance_pct": 1,
"estimated_oi_fraction": 0.049,
"leverage": 50,
"liq_price": 108575
},
{
"distance_pct": 3.84,
"estimated_oi_fraction": 0.1225,
"leverage": 25,
"liq_price": 111625
}
],
"squeeze_bias": "long_squeeze_risk",
"total_long_oi_estimate": 44571,
"total_short_oi_estimate": 39749.15
},
"disclaimer": "Cluster map is estimated from OI and leverage-band modeling — NOT a live order book. Not financial advice.",
"funding_rate": 0.0001,
"mark_price": 107500,
"open_interest": 84320.15,
"recent_prints": {
"available": true,
"count": 5,
"note": "side:buy = short position liquidated (forced buy to close); side:sell = long position liquidated (forced sell to close).",
"prints": [
{
"pos_side": "short",
"price": 107600.5,
"side": "buy",
"size": 10.1,
"time": "2026-01-01T00:00:00.000Z"
}
],
"source": "okx-public"
}
},
"example_kind": "illustrative_schema_only",
"example_note": "Placeholder values and timestamps, not market data.",
"type": "json"
}
},
"routeTemplate": ":var1",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"POST"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://kronossignals.com/api/v1/liquidations/btc" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://kronossignals.com/api/v1/liquidations/btc");
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://kronossignals.com/api/v1/liquidations/btc")
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/410.json, and this resource appears in /discovery/resources and /discovery/search.