get_order_book
Fetch real-time order book data for Binance cryptocurrency trading pairs, including price levels and quantities, to analyze market depth and liquidity efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Order book depth, default 100, max 5000 | |
symbol | Yes | Trading pair symbol, e.g. BTCUSDT |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Order book depth, default 100, max 5000",
"type": "number"
},
"symbol": {
"description": "Trading pair symbol, e.g. BTCUSDT",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}