Orderbook
Orderbook
Retrieve the full order book for a trading pair with individual price levels via the V4 API.
GET
Orderbook
Public order book responses exclude Retail Price Improvement (RPI) orders. Private active order endpoints and private WebSocket streams return RPI orders. The exchange UI order book (web and mobile) displays RPI orders.
Path Parameters
Market pair name
Example:
"BTC_USDT"
Query Parameters
Orders depth quantity: 0 - 100. Not defined or 0 will return 100 entries.
Required range:
0 <= x <= 100Example:
100
Optional parameter that controls the aggregation level. Level 0 – default, no aggregation. Levels 1–5 provide increasing aggregation of the order book.
Required range:
0 <= x <= 5Example:
2
Response
Successful response
Market Name
Example:
"BTC_PERP"
Current timestamp
Example:
1594391413
Array of ask orders
[price, quantity] — price in quote currency, quantity in base currency
Required array length:
2 elementsExample:
["9184.41", "0.773162"]Array of bid orders
[price, quantity] — price in quote currency, quantity in base currency
Required array length:
2 elementsExample:
["9181.19", "0.010873"]