Forced-liquidation tape over a time window, reconstructed from the node-fills archive (Hyp
Forced-liquidation tape over a time window, reconstructed from the node-fills archive (Hyperliquid has no public liquidations feed). Each row is a trade row (coin, side, px, sz, time, hash, tid, users:[buyer, seller]) plus the liquidation markers (method market|backstop, markPx, liquidatedUser, dir). Priced per asset-hour ($0.005 base, $0.01 HIP-3/HIP-4) plus $0.05 per uncached archive hour pulled; up to 24 asset-hours/request, available ~2h after the hour closes.
11000 (raw units)
price
22
calls / 30d
15
unique payers
2026-09-09
updated
Provider
api.hyperextend.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x548fC289526ab2F0391D562a723cdA64Bbf1abc4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "11000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "hyperliquid:mainnet",
"payTo": "0x548fC289526ab2F0391D562a723cdA64Bbf1abc4",
"asset": "USDC:0x6d1e7cde53ba9467b783cb7c530ce054",
"amount": "0.011",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"end": 0,
"start": 0
},
"type": "http"
},
"output": {
"example": {
"coin": "BTC",
"dir": "Close Long",
"hash": "0xa2f9738770fb57c6a473043cd486820204b5006d0bfe769846c21eda2fff31b1",
"liquidatedUser": "0xa960b2a0fc5f9f53e99df362052e69980cb57fe4",
"markPx": "41995.0",
"method": "market",
"px": "42000.0",
"side": "A",
"sz": "0.5",
"tid": 859758437920209,
"time": 1700000000123,
"users": [
"0xf513d3489017dea4e04c6a11cc62ec360054d7c6",
"0xa960b2a0fc5f9f53e99df362052e69980cb57fe4"
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"pathParams": {
"properties": {
"coin": {
"description": "Asset symbol, e.g. BTC",
"type": "string"
}
},
"required": [
"coin"
],
"type": "object"
},
"queryParams": {
"properties": {
"end": {
"type": "integer"
},
"start": {
"type": "integer"
}
},
"required": [],
"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://api.hyperextend.xyz/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://api.hyperextend.xyz/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://api.hyperextend.xyz/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/477.json, and this resource appears in /discovery/resources and /discovery/search.