Get Transaction Data
Description
Get transaction details
HTTP Request
- GET /fapi/v1/trade/myTrades
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| futuresName | String | Yes | Futures name, e.g. "E-BTC-USDT" |
| fromId | String | No | Transaction ID without included the request ID |
| limit | String | No | Number of queries: Default: 100, maximum: 100 |
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/trade/myTrades?futuresName=E-BTC-USDT' \
-H "X-CH-TS:1736156253259" \
-H "X-CH-SIGN:*" \
-H "X-CH-APIKEY:********" \
-H "Content-Type: application/json"Response Parameters
| Parameter | Type | Description |
|---|---|---|
| >futuresName | String | Futures name, e.g. "E-BTC-USDT" |
| >tradeId | String | Transaction ID |
| >orderId | String | Order ID |
| >userId | String | Account ID |
| >price | String | Transaction price |
| >qty | String | Transaction quantity |
| >amount | String | Amount of transaction without leverage |
| >fee | String | Transaction fee |
| >side | String | Order direction |
| >tradeSide | String | Trader tag. TAKER: Taker, MAKER: Maker |
| >time | String | Creation time, ms |
Response Example
json
{
"code": "0",
"msg": "suc",
"data": [
{
"futuresName": "E-BTC-USDT",
"tradeId": "36600920",
"orderId": "2552956752918876529",
"userId": "11497",
"price": "101637.3",
"qty": "10653",
"amount": "108274.21569",
"fee": "64.964529414",
"side": "SELL",
"tradeSide": "TAKER",
"time": "1736300665000"
}
]
}