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

# Traders Open Interest

> Subscribe to aggregated traders' open interest data via WebSocket, pushed every minute.

Push interval: every 1m

```json theme={null}
{
  "id": "clientID11",
  "topic": "traders_open_interests",
  "event": "subscribe"
}
```

**Parameters**

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

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

<ResponseExample>
  ```json Subscribed Message theme={null}
  {
    "topic": "traders_open_interests",
    "ts": 1618820615000,
    "data": [
      {
        "symbol": "PERP_BTC_USDC",
        "long_oi": 31000,
        "short_oi": 31000
      },
      {
        "symbol": "PERP_ETH_USDC",
        "long_oi": 31000,
        "short_oi": 31000
      }
    ]
  }
  ```
</ResponseExample>
