Recent Trades
Type: NONE
External endpoint:
GET /fapi/v1/trades
Rocky impl:GET /v1/markets/{symbol}/recent-trades✓
Most-recent public trades for a symbol, newest first.
Request
GET /v1/markets/{symbol}/recent-trades?limit=100
Query params
| Name | Type | Required | Default | Notes |
|---|---|---|---|---|
limit | integer | no | 100 | Clamped to 500. |
Response — 200
[
{ "price": "76521.34", "qty": "0.0005", "side": "BUY", "ts_ms": 1748275200320 }
]
| Field | Type | Notes |
|---|---|---|
side | string | "BUY" = aggressor was the buyer (taker bought). |
Lives on the V1 surface. The standard-shaped
/fapi/v1/tradeshas not been added — clients that want the standard shape should consume V1 and rename fields.