Skip to main content

Get Full Depth Orderbook

Query for full orderbook depth data.

Covers: Spot / USDT contract / USDC contract / Inverse contract

  • Return up to 10,000 levels per side.
info
  • The response is in the snapshot format.
  • Use this REST endpoint to initialize your local order book, then apply delta updates from the WebSocket full orderbook stream.
  • Retail Price Improvement (RPI) orders will not be included in the response.

Release Schedule

ProductTestnetMainnet
SpotJuly 6, 2026July 16, 2026
Futures (linear & inverse)Est.July 13, 2026not determined

HTTP Request

GET/v5/market/full_orderbook

Request Parameters

ParameterRequiredTypeComments
categorytruestringProduct type. spot, linear, inverse
symboltruestringSymbol name, like BTCUSDT

Response Parameters

ParameterTypeComments
sstringSymbol name
barrayBid, buyer. Sorted by price in descending order
> b[0]stringBid price
> b[1]stringBid size
aarrayAsk, seller. Sorted by price in ascending order
> a[0]stringAsk price
> a[1]stringAsk size
tsintegerThe timestamp (ms) that the system generates the data
uintegerUpdate ID, is always in sequence, corresponds to u in the WebSocket full orderbook stream
seqintegerCross sequence
  • You can use this field to compare different levels orderbook data, and for the smaller seq, then it means the data is generated earlier.
ctsintegerThe timestamp from the matching engine when this orderbook data is produced. It can be correlated with T from public trade channel

Request Example


Response Example