v1
latestOpenAPI 3.1.02026-07-24590534.0 KBTrades
Fetch trades for the authenticated user or a sub account tethered to the authenticated user
get/users/{user_id}/trades
Path parameters
user_idstring required
The User ID. Use 'me' if fetching wallets of main authenticated user, use the user_id if fetching for Sub-account linked to the authenticated user.
Response
200
Example response
{
"status": "success",
"message": "Successful",
"data": [
{
"id": "45124120",
"market": {
"id": "trxusdt",
"base_unit": "TRX",
"quote_unit": "USDT"
},
"price": {
"unit": "USDT",
"amount": "0.2803200000000000"
},
"volume": {
"unit": "TRX",
"amount": "7.1347031900000000"
},
"total": {
"unit": "USDT",
"amount": "1.99999999822080000000000000000000"
},
"created_at": "2026-02-16T07:34:05.578Z",
"updated_at": "2026-02-16T07:34:05.000Z"
}
]
}