get_historical_trades
Retrieve historical trade data for specified cryptocurrency pairs from Binance, including trade IDs, quantities, and timestamps, enabling detailed market analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fromId | No | Trade ID to start from, default returns the most recent trades | |
limit | No | Number of trades to return, default 500, max 1000 | |
symbol | Yes | Trading pair symbol, e.g. BTCUSDT |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fromId": {
"description": "Trade ID to start from, default returns the most recent trades",
"type": "number"
},
"limit": {
"description": "Number of trades to return, default 500, max 1000",
"type": "number"
},
"symbol": {
"description": "Trading pair symbol, e.g. BTCUSDT",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}