Skip to main content
GET
https://api.0xarchive.io
/
v1
/
hyperliquid
/
hip3
/
liquidations
/
{symbol}
Get HIP-3 liquidation events
curl --request GET \
  --url https://api.0xarchive.io/v1/hyperliquid/hip3/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

HIP-3 trading pair symbol (e.g., hyna:BTC, km:US500). Case-sensitive.

Example:

"hyna:BTC"

Query Parameters

start
integer<int64>
required

Start timestamp (Unix milliseconds)

Example:

1769922000000

end
integer<int64>

End timestamp (Unix milliseconds). Defaults to now.

cursor
string

Pagination cursor (format: {timestamp_ms}_{trade_id})

limit
integer
default:1000

Maximum records to return (1-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