binance_get_recent_trades
Retrieve recent public trades for a symbol to view executed prices, quantities, and trade sides.
Instructions
Fetch the most recent public trades for a symbol.
Calls GET /api/v3/trades (weight 25). Always returns the latest trades — there is
no way to page backward here (use binance_get_agg_trades with from_id for that).
When to Use:
To see the last executed prices/sizes and maker/taker mix for a symbol.
When NOT to Use:
To page through trade history by id — use
binance_get_agg_trades.For your OWN trades — use
binance_get_my_trades(signed).
Returns:
Markdown: a table of up to 100 trades (id, time, price, qty, side). JSON: the full
requested page (up to limit), uncapped.
Examples: params = {"symbol": "BTCUSDT", "limit": 50}
Error Handling:
An unknown symbol raises Binance -1121 Invalid symbol.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |