GET
/
v3
/
public
/
orderbook
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

Response

200 - application/json

The response is of type object.