Binance MCP Server

get_market_data

Get comprehensive market data for a trading pair

Input Schema

NameRequiredDescriptionDefault
symbolYesTrading pair symbol (e.g., BTCUSDT)
typeYesMarket type

Input Schema (JSON Schema)

{ "properties": { "symbol": { "description": "Trading pair symbol (e.g., BTCUSDT)", "type": "string" }, "type": { "description": "Market type", "enum": [ "spot", "futures" ], "type": "string" } }, "required": [ "symbol", "type" ], "type": "object" }