Liquidations

List liquidations

Retrieves a list of liquidations associated to the requester's account

GEThttps://api.testnet.paradex.trade/v1/liquidations
Authorization
Query parameters
Response

OK

Body
resultsarray of responses.LiquidationResp (object)

List of liquidations

Request
const response = await fetch('https://api.testnet.paradex.trade/v1/liquidations', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "results": [
    {
      "created_at": 1697213130097,
      "id": "0x123456789"
    }
  ]
}

Last updated