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

# Account

> Subscribe to real-time account status updates via private WebSocket stream.

Push interval: real-time push

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

**Parameters**

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

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

<ResponseExample>
  ```json Subscribed Message theme={null}
  {
      "accountDetail": {
          "marginMode": "SPOT_FUTURES",
          "futuresLeverage": 10,
          "takerFeeRate": 10,
          "makerFeeRate": 10,
          "futuresTakerFeeRate": 8,
          "futuresMakerFeeRate": 4,
          "rwaFuturesTakerFeeRate": 13.0,
          "rwaFuturesMakerFeeRate": 12.0,
          "maintenanceCancelFlag": false,
          "totalCollateralValue": 100,
          "freeCollateral": 100,
          "accountValue": 100,
          "symbolLeverage": {
              "leverage": 20,
              "symbol": "PERP_BTC_USDC",
              "marginMode": "CROSS"
          }
      }
  }
  ```
</ResponseExample>
