Binance Cryptocurrency MCP

get_aggregate_trades

Retrieve aggregated trade data for specific trading pairs on Binance. Specify symbol, time range, or trade ID to fetch details like timestamp, price, and quantity, up to 1000 trades.

Input Schema

NameRequiredDescriptionDefault
endTimeNoEnd timestamp (milliseconds)
fromIdNoAggregate trade ID to start from
limitNoNumber of trades to return, default 500, max 1000
startTimeNoStart timestamp (milliseconds)
symbolYesTrading pair symbol, e.g. BTCUSDT

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "endTime": { "description": "End timestamp (milliseconds)", "type": "number" }, "fromId": { "description": "Aggregate trade ID to start from", "type": "number" }, "limit": { "description": "Number of trades to return, default 500, max 1000", "type": "number" }, "startTime": { "description": "Start timestamp (milliseconds)", "type": "number" }, "symbol": { "description": "Trading pair symbol, e.g. BTCUSDT", "type": "string" } }, "required": [ "symbol" ], "type": "object" }
ID: sq1g72mqqx