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

# Orderbook

### Topic: orderbook10@`{symbol}`

Push interval: 200ms\
Subscribe to orderbook snapshot with 10 level.

<RequestExample>
  ```bash Subscribed messages theme={null}
  {
    "id": .....
    "cmd": "SUBSCRIBE",
    "params": ["orderbook10@PERP_SOL_USDT"]
  }
  ```
</RequestExample>

<ResponseExample>
  ```bash theme={null}
  {
      "topic": "orderbook10@PERP_SOL_USDT",
      "ts": 1762308368653,
      "data": {
          "ts": 1762308368647,
          "bids": [
              [
                  "154.36",
                  "731.000"
              ],
              [
                  "154.35",
                  "891.000"
              ],
              [
                  "154.34",
                  "824.000"
              ],
              [
                  "154.33",
                  "937.000"
              ],
              [
                  "154.32",
                  "1246.000"
              ],
              [
                  "154.31",
                  "1285.000"
              ],
              [
                  "154.30",
                  "1819.000"
              ],
              [
                  "154.29",
                  "1869.000"
              ],
              [
                  "154.28",
                  "1291.000"
              ],
              [
                  "154.27",
                  "1786.000"
              ]
          ],
          "asks": [
              [
                  "154.44",
                  "230.000"
              ],
              [
                  "154.45",
                  "198.000"
              ],
              [
                  "154.46",
                  "1947.000"
              ],
              [
                  "154.47",
                  "12197.000"
              ],
              [
                  "154.48",
                  "271.000"
              ],
              [
                  "154.49",
                  "363.000"
              ],
              [
                  "154.50",
                  "474.000"
              ],
              [
                  "154.51",
                  "708.000"
              ],
              [
                  "154.52",
                  "1108.000"
              ],
              [
                  "154.53",
                  "1317.000"
              ]
          ],
          "s": "PERP_SOL_USDT"
      }
  }
  ```
</ResponseExample>
