GET
/
v1
/
liquidations
curl --request GET \
  --url https://api-evm.orderly.network/v1/liquidations \
  --header 'orderly-account-id: <orderly-account-id>' \
  --header 'orderly-key: <orderly-key>' \
  --header 'orderly-signature: <orderly-signature>' \
  --header 'orderly-timestamp: <orderly-timestamp>'
{
  "success": true,
  "timestamp": 1702989203989,
  "data": {
    "meta": {
      "total": 9,
      "records_per_page": 25,
      "current_page": 1
    },
    "rows": [
      {
        "liquidation_id": 101,
        "timestamp": 1663313562090,
        "transfer_amount_to_insurance_fund": 123,
        "positions_by_perp": [
          {
            "abs_liquidator_fee": 1.152279,
            "cost_position_transfer": 65.84448,
            "liquidator_fee": 0.0175,
            "position_qty": 41.6,
            "symbol": "PERP_NEAR_USDC",
            "transfer_price": 1.5828
          }
        ]
      }
    ]
  }
}

Headers

orderly-timestamp
string
required
orderly-account-id
string
required
orderly-key
string
required
orderly-signature
string
required

Query Parameters

symbol
string
start_t
number
end_t
number
page
number
size
number

Response

200 - application/json
success
boolean
required
timestamp
integer
data
object
required