get_orderbook
Retrieve real-time orderbook data for a specific trading pair on Bybit, including market depth for bids and asks, to analyze liquidity and trading opportunities.
Instructions
Get orderbook (market depth) data for a trading pair
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category of the instrument (spot, linear, inverse) | |
limit | No | Limit for the number of bids and asks (1, 25, 50, 100, 200) | |
symbol | Yes | Trading pair symbol (e.g., 'BTCUSDT') |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category of the instrument (spot, linear, inverse)",
"enum": [
"spot",
"linear",
"inverse"
],
"type": "string"
},
"limit": {
"description": "Limit for the number of bids and asks (1, 25, 50, 100, 200)",
"enum": [
"1",
"25",
"50",
"100",
"200"
],
"type": "string"
},
"symbol": {
"description": "Trading pair symbol (e.g., 'BTCUSDT')",
"pattern": "^[A-Z0-9]+$",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}