Account Trade History
Type: USER-DATA
External endpoint:
GET /fapi/v1/userTrades
Rocky impl:GET /v1/trades/me✓
Caller's trade history, newest first.
Request
GET /v1/trades/me?user_id=<uuid>&limit=100
Query params
| Name | Type | Required | Default | Notes |
|---|---|---|---|---|
user_id | UUID | yes | — | Caller identity. |
limit | integer | no | 100 | Clamped to 500. |
Response — 200
[
{
"trade_id": "f1e2d3c4-b5a6-7890-1234-567890abcdef",
"user_id": "5cfb031b-5936-4467-9533-cd2df576dbb8",
"symbol": "BTC-PERP",
"side": "BUY",
"price": "76521.34",
"qty": "0.0005",
"fee": "0.0019",
"ts": "2026-05-26T08:00:15Z"
}
]
Standard extra fields
commissionAsset,realizedPnl,marginAsset,orderId,quoteQty,buyer,makerare not yet returned.