---
title: "Returns a list of liquidations"
method: GET
path: "/v1/position/liquidation"
tags: ["Position"]
---

# Returns a list of liquidations

`GET /v1/position/liquidation`

## Query parameters

- `order` 'desc'
- `limit` integer
- `cursor` string
- `orderBy` 'createdAt'

## Response `200`

- PageOfPositionLiquidationsDto
  - `data` PositionLiquidationDto[], required — Array of position liquidation objects
    - `cause` 'MarkChanged' | 'Funding', required — Cause of liquidation (either MarkChanged or Funding)
    - `cost` string, decimal, required — Position cost at the time of liquidation in USD expressed as a decimal (precision: 9)
    - `createdAt` integer, required — Position liquidation timestamp (ms since Unix Epoch)
    - `fundingChargeUsd` string, decimal — Funding charged in USD expressed as a decimal (precision: 9), undefined if not liquidated due to funding
    - `id` string, uuid, required — Id representing the position liquidation
    - `liquidationPrice` string, decimal, required — Liquidation mark price in USD expressed as a decimal (precision: 9)
    - `positionId` string, uuid, required — Id representing the position that was liquidated
    - `positionSide` 0 | 1, required
    - `productId` string, uuid, required — Id representing the product that was liquidated
    - `subaccountId` string, uuid, required — Id representing the subaccount that was liquidated
  - `hasNext` boolean, required — Whether there are more objects to paginate through
  - `nextCursor` string — Pointer to the next page in pagination dataset

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Entity
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.net/ethereal/apis/ethereal-exchange-api.md) · [All operations](https://skmtc.net/ethereal/apis/ethereal-exchange-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ethereal/ethereal-exchange-api/revisions/6e6f8dad92bf/schema)
