depth
Retrieve order book data for cryptocurrency trading pairs to analyze market depth and liquidity for informed trading decisions.
Instructions
Get the order book for a symbol.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results. Default 500, max 1000. | |
| symbol | Yes | Trading symbol, e.g., BTCUSDT |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of results. Default 500, max 1000.",
"type": "number"
},
"symbol": {
"description": "Trading symbol, e.g., BTCUSDT",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}