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

Authorizations

X-API-Key
string
header
required

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

Path Parameters

symbol
string
required

Lighter market symbol.

Example:

"BTC"

Query Parameters

start
integer<int64>

Start timestamp in Unix milliseconds. Defaults depend on the route family.

end
integer<int64>

End timestamp in Unix milliseconds. Defaults to now.

cursor
string

Cursor for pagination. Use the value from the previous response metadata.

limit
integer
default:100

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

Required range: x <= 1000

Response

Lighter liquidation events

API response containing an array of liquidation events

success
boolean
Example:

true

data
object[]
meta
object
Last modified on June 19, 2026