fetchOrderBook
Retrieve real-time order book data for a specific trading symbol on a cryptocurrency exchange using specified exchange ID and optional limit. Enables informed trading decisions through MCP server integration.
Instructions
Fetch order book for a symbol on an exchange
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchangeId | Yes | Exchange ID (e.g., 'binance', 'coinbase') | |
limit | No | Limit the number of orders returned (optional) | |
symbol | Yes | Trading 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"
}