Appearance
Get order book
GET
/v1/public/{currencyPair}/orderbook
Returns a list of the top 40 bids and asks in the order book. Ask orders are sorted by price ascending. Bid orders are sorted by price descending. Orders of the same price are aggregated. Please note: This is not an authenticated call. More constrained rate-limiting rules will apply than when you use the /marketdata/:currencyPair/orderbook route.
Parameters
Path Parameters
currencyPair*
Currency pair for which you want to query the order book
Type
Requiredstring
Responses
Order book retrieved successfully
application/json
JSON
{
"Asks": [
{
"side": "sell",
"quantity": "0.01293134",
"price": "93129",
"currencyPair": "BTCUSDT",
"orderCount": 1
}
],
"Bids": [
{
"side": "buy",
"quantity": "1.23136671",
"price": "81400",
"currencyPair": "BTCUSDT",
"orderCount": 17
}
],
"LastChange": "2025-07-15T12:19:21.501Z",
"SequenceNumber": 282886
}