> ## Documentation Index
> Fetch the complete documentation index at: https://orderly.network/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Liquidator liquidations push

> Subscribe to liquidator-initiated liquidation updates via private WebSocket stream.

Push interval: push on addition/removal/update from list within 1s

1 user\_id can have many liquidation\_ids

```json theme={null}
{
  "id": "clientID3",
  "topic": "liquidatorliquidations",
  "event": "subscribe"
}
```

**Parameters**

| Name  | Type   | Required | Description               |
| ----- | ------ | -------- | ------------------------- |
| id    | string | Y        | id generate by client     |
| event | string | Y        | `subscribe`/`unsubscribe` |
| topic | string | Y        | `liquidatorliquidations`  |

<RequestExample>
  ```json Response theme={null}
  {
      "id": "clientID3",
      "event": "subscribe",
      "success": true,
      "ts": 1682244882617
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Subscribed Message theme={null}
  {
    "topic": "liquidatorliquidations",
    "ts": 1684821114917,
    "data": {
      "liquidationId": 1,
      "timestamp": 1684821114917,
      "type": "liquidated",
      "assigned": 1,
      "positionsByPerp": [
        {
          "symbol": "PERP_NEAR_USDC",
          "positionQty": 12.6,
          "costPositionTransfer": 20.05668,
          "transferPrice": 1.5918,
          "liquidatorFee": 0.0175,
          "absLiquidatorFee": 0.350992
        }
      ]
    }
  }
  ```
</ResponseExample>
