Order Book
Current bids and asks for a symbol.
/api/v1/depthWeight: 1 to 50 by limitPUBLICReturn the current order book for a symbol: a list of bids (buy orders) and asks (sell orders), each as a [price, quantity] pair, sorted best-first.
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | STRING | Yes | The trading pair, e.g. BTCUSDT |
| limit | INT | No | Depth on each side: 5, 10, 20, 50, 100 (default), 500, 1000 |
The first bid and first ask are the best prices; the gap between them is the spread. For a live book that stays in sync without repeated snapshots, subscribe to the depth stream (see Market Streams) and apply updates against lastUpdateId.