CCXT MCP Server

by lazy-dinosaur
Verified

fetchOrderBook

Retrieve the order book for a specified trading symbol on a cryptocurrency exchange, including bid and ask orders, to analyze market depth and liquidity. Integrates with over 100 exchanges via the CCXT MCP Server.

Instructions

Fetch order book for a symbol on an exchange

Input Schema

NameRequiredDescriptionDefault
exchangeIdYesExchange ID (e.g., 'binance', 'coinbase')
limitNoLimit the number of orders returned (optional)
symbolYesTrading symbol (e.g., 'BTC/USDT')

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "exchangeId": { "description": "Exchange ID (e.g., 'binance', 'coinbase')", "type": "string" }, "limit": { "description": "Limit the number of orders returned (optional)", "type": "number" }, "symbol": { "description": "Trading symbol (e.g., 'BTC/USDT')", "type": "string" } }, "required": [ "exchangeId", "symbol" ], "type": "object" }
ID: mt6hftp7hy