get_order_book
Fetch a current snapshot of bid and ask levels for a Binance symbol, with up to 100 price levels per side. Use it to assess market depth and liquidity at a glance.
Instructions
Current order book snapshot for one symbol, up to 100 levels per side. A snapshot, not a stream: it is stale the moment it is returned.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| depth | No | Price levels per side. Clamped to 100; larger values are silently reduced rather than rejected. | |
| symbol | Yes | Trading pair, base asset first, no separator. Case-insensitive; BTC/USDT and btc-usdt both normalise to BTCUSDT. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asks | Yes | Ascending by price. | |
| bids | Yes | Descending by price. | |
| symbol | Yes | ||
| last_update_id | Yes | Binance sequence id for this snapshot. |