Appearance
Get full order book
GET
/v1/public/{currencyPair}/orderbook/full
Returns a list of all the 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 NOT aggregated. The LastChange field indicates the timestamp of the last update to the order book. Please note: This is not an authenticated call. More constrained rate-limiting rules will apply than when you use the /marketdata/:currencyPair/orderbook/full route.
Parameters
Path Parameters
currencyPair*
Currency pair for which you want to query the order book
Type
Requiredstring
Responses
Full order book retrieved successfully
application/json
JSON
{
"Asks": [
{
"side": "sell",
"quantity": "0.01293134",
"price": "93129",
"currencyPair": "BTCUSDT",
"id": "01972611-7cd0-7866-a6f3-8bc8f9c4a55a",
"positionAtPrice": 1
}
],
"Bids": [
{
"side": "buy",
"quantity": "1.23117023",
"price": "81400",
"currencyPair": "BTCUSDT",
"id": "01966bf8-308b-7fb9-a6db-bf2d6122f08b",
"positionAtPrice": 1
},
{
"side": "buy",
"quantity": "0.00001228",
"price": "81400",
"currencyPair": "BTCUSDT",
"id": "0197f31a-7db7-7e5b-89c5-65337989465f",
"positionAtPrice": 2
}
],
"LastChange": "2025-07-15T12:19:21.501Z",
"SequenceNumber": 282886
}