Account Trades

GET /api/v3/accounts/trades

Query Parameters

ParameterTypeDescription
pairstringpair symbol like BTC_USDT
sidestringBUY or SELL
start_timeintegerUnix timestamp, filter from (>=)
end_timeintegerUnix timestamp, filter to (<)
limitintegerlimit of records (default 100, max 100)
private_api.accounts().trades('ETH_USDT')

Response

[{
    "id": 293107798,
    "pair": "BTC_USDT",
    "side": "BUY",
    "price": 45000.0,
    "amount": 1.0,
    "fee": 0.005,
    "timestamp": 1630862400.0,
    "order_id": 123456
}, ...]

Response Fields

FieldTypeDescription
idintegermatch/trade ID
pairstringpair symbol
sidestringBUY or SELL
pricefloattrade price
amountfloattrade amount
feefloatfee amount charged
timestampfloatUnix timestamp (with microsecond precision)
order_idintegerthe order ID that was filled