GET
/
v3
/
public
/
orderbook
cURL
curl --request GET \
  --url https://api.woox.io/v3/public/orderbook
{
  "success": true,
  "timestamp": 123,
  "data": {
    "asks": [
      {
        "price": "<string>",
        "quantity": "<string>"
      }
    ],
    "bids": [
      {
        "price": "<string>",
        "quantity": "<string>"
      }
    ]
  }
}
Limit: 10 requests per 1 second

Query Parameters

symbol
string
required

Symbol name

maxLevel
integer
default:100

Maximum number of levels to show on both sides

rpi
boolean
default:false

Options are True/False, default is False. If set to true, fetch the order book snapshot including both non-RPI and RPI orders.

Response

200 - application/json

The response is of type object.