v1
latestOpenAPI 3.0.32026-07-1492428.9 KBExchange
/exchange/depth
Returns the current state of the orderbook.
get/v1/exchange/depth
Query parameters
symbolstring required
Market symbol to get the orderbook depth for.
limitinteger
Maximum number of bids and asks to return. Default 500; max 1000.
Response
Orderbook depth
Example response
{
"symbol": "0x123",
"updatedAtMillis": 1628078846123,
"lastUpdateId": 56789,
"responseSentAtMillis": 1628078846133,
"bestBidPriceE9": "4000000000",
"bestBidQuantityE9": "431000000000",
"bestAskPriceE9": "4000002000",
"bestAskQuantityE9": "12000000000",
"bidsE9": [
[
"4000000000",
"431000000000"
]
],
"asksE9": [
[
"4000002000",
"12000000000"
]
]
}