Get Capital Fee List
Description
Get capital fee list
HTTP Request
- GET /fapi/v1/account/capital
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/account/capital' \
-H "X-CH-TS:1736156253259" \
-H "X-CH-SIGN:*" \
-H "X-CH-APIKEY:********" \
-H "Content-Type: application/json"Response Parameters
| Parameter | Type | Description |
|---|---|---|
| > date | String | Capital fee date string |
| > futuresName | String | Futures name, e.g. "E-ETH-USDT" |
| > amount | String | Amount of capital fee |
| > scene | String | Capital fee direction, capital_cost_in: get capital fee, capital_cost_out: pay capital fee |
| > time | String | Timestamp, seconds |
Response Example
json
{
"code": "0",
"msg": "suc",
"data": [
{
"date": "2025-01-08",
"futuresName": "E-ETH-USDT",
"amount": "0.01341552",
"scene": "capital_cost_in",
"time": "1736352039"
},
{
"date": "2025-01-09",
"futuresName": "E-ETH-USDT",
"amount": "0.01338013995276",
"scene": "capital_cost_in",
"time": "1736380835"
},
...
],
"succ": true
}