> ## 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.

# Liquidation on account push

> Subscribe to account-level liquidation event notifications via private WebSocket stream.

Push interval: push on update

```json theme={null}
{
  "id": "clientID5",
  "topic": "liquidationsaccount",
  "event": "subscribe"
}
```

**Parameters**

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

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

<ResponseExample>
  ```json Subscribed Message theme={null}
  {
    "topic": "liquidationsaccount",
    "ts": 1641439456774,
    "data": [
      {
        "liquidationId": 101,
        "timestamp": 1663313562090,
        "transferAmountToInsuranceFund": 0,
        "positionsByPerp": [
          {
            "symbol": "PERP_BTC_USDC",
            "positionQty": 1.23,
            "costPositionTransfer": 1350,
            "transferPrice": 18123.43,
            "liquidatorFee": 0.015,
            "insuranceFundFee": 0.015,
            "absLiquidationFee": 3520,
            "marginMode": "CROSS"
          }
        ]
      }
    ]
  }
  ```
</ResponseExample>
