CM Account Trade List(USER_DATA)
API Description
Get trades for a specific account and CM symbol.
HTTP Request
GET /papi/v1/cm/userTrades
Request Weight
20 with symbol, 40 with pair
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
symbol | STRING | NO | |
pair | STRING | NO | |
startTime | LONG | NO | |
endTime | LONG | NO | |
fromId | LONG | NO | Trade id to fetch from. Default gets most recent trades. |
limit | INT | NO | Default 50; max 1000. |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
- Either
symbol
orpair
must be sentsymbol
andpair
cannot be sent togetherpair
andfromId
cannot be sent togetherOrderId
can only be sent together with symbol- If a
pair
is sent, tickers for all symbols of thepair
will be returned- The parameter
fromId
cannot be sent withstartTime
orendTime
Response Example
[
{
'symbol': 'BTCUSD_200626',
'id': 6,
'orderId': 28,
'pair': 'BTCUSD',
'side': 'SELL',
'price': '8800',
'qty': '1',
'realizedPnl': '0',
'marginAsset': 'BTC',
'baseQty': '0.01136364',
'commission': '0.00000454',
'commissionAsset': 'BTC',
'time': 1590743483586,
'positionSide': 'BOTH',
'buyer': false,
'maker': false
}
]