get_aggregate_trades
Retrieve aggregated trade data for specific cryptocurrency pairs on Binance. Fetch trade history using symbols, time ranges, or trade IDs for detailed market analysis and insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endTime | No | End timestamp (milliseconds) | |
fromId | No | Aggregate trade ID to start from | |
limit | No | Number of trades to return, default 500, max 1000 | |
startTime | No | Start timestamp (milliseconds) | |
symbol | Yes | Trading 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"
}