get_recent_trades
Fetch recent trades for a specific cryptocurrency pair on Binance. Retrieve up to 1000 recent transactions by specifying the trading symbol and optional limit to analyze market activity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"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"
}