Skip to main content
GET
https://api.0xarchive.io
/
v1
/
hyperliquid
/
liquidations
/
{symbol}
Get Hyperliquid liquidation events
curl --request GET \
  --url https://api.0xarchive.io/v1/hyperliquid/liquidations/{symbol} \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "symbol": "BTC",
      "coin": "BTC",
      "timestamp": "2025-05-21T10:30:00.000Z",
      "liquidated_user": "0x84eec0068b37919cc8f13d7454073ac167374cc0",
      "liquidator_user": "0x4d969e59b312970cc07af266938a4433ccae0b4c",
      "price": "42500.50",
      "size": "1.5",
      "side": "B",
      "mark_price": "42480.25",
      "closed_pnl": "-1250.50",
      "direction": "Close Long",
      "trade_id": 1234567890,
      "tx_hash": "0xe266d353038e679c5d7e042433054f0000e1d8e52f7860ecda84573b9b5a02ca"
    }
  ],
  "meta": {
    "count": 123,
    "next_cursor": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.0xarchive.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key for authentication. Get yours at https://www.0xarchive.io/dashboard/

Path Parameters

symbol
string
required

Trading pair symbol (e.g., BTC, ETH)

Example:

"BTC"

Query Parameters

start
integer<int64>

Start timestamp in Unix milliseconds. Defaults to 24h ago.

end
integer<int64>

End timestamp in Unix milliseconds. Defaults to now.

cursor
string

Cursor for pagination (format: timestamp_tradeId)

limit
integer
default:100

Maximum number of results (default: 100, max: 1000)

Required range: x <= 1000

Response

Liquidation events

API response containing an array of liquidation events

success
boolean
Example:

true

data
object[]
meta
object
Last modified on May 20, 2026