Bybit MCP Server

get_orderbook

Get orderbook (market depth) data for a trading pair

Input Schema

NameRequiredDescriptionDefault
categoryNoCategory of the instrument (spot, linear, inverse)
limitNoLimit for the number of bids and asks (1, 25, 50, 100, 200)
symbolYesTrading 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" }