Check Account
Check Account
Descriptionâ
This interface is used to query available, withdrawable, frozen, pending settlement and in-transit fund (fund subscription/redemption) information for each currency.
HTTP Requestâ
- GET /api/v3/stockplus/asset/account
- Permission: Trade (management, read only)
Request
curl "https://api.bitget.com/api/v3/stockplus/asset/account" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parametersâ
| Parameters | Type | Required | Description |
|---|---|---|---|
| currency | String | No | Currency (USD, CNH) |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"list": [
{
"totalCash": 13.88,
"maxFinanceAmount": 0.00,
"remainingFinanceAmount": 13.88,
"riskLevel": 0,
"marginCall": 0,
"netAssets": 13.88,
"initMargin": 0.00,
"maintenanceMargin": 0.00,
"currency": "USD",
"buyPower": 13.88,
"cashInfos": [
{
"withdrawCash": 13.88,
"availableCash": 13.88,
"frozenCash": 0.00,
"settlingCash": 0.00,
"currency": "USD"
}
],
"frozenTransactionFees": []
}
]
}
}
Response Parametersâ
| Parameters | Type | Description |
|---|---|---|
| list | List<Object> | Account fund information |
| > totalCash | Number | Total cash |
| > maxFinanceAmount | Number | Max financing amount |
| > remainingFinanceAmount | Number | Remaining financing amount |
| > riskLevel | Number | Risk control level0 - Safe1 - Medium risk2 - Warning3 - Danger |
| > marginCall | Number | Margin call amount |
| > netAssets | Number | Net assets |
| > initMargin | Number | Initial margin |
| > maintenanceMargin | Number | Maintenance margin |
| > currency | String | Currency |
| > buyPower | Number | Buying power |
| > cashInfos | List<Object> | Cash details |
| >> withdrawCash | Number | Withdrawable cash |
| >> availableCash | Number | Available cash |
| >> frozenCash | Number | Frozen cash |
| >> settlingCash | Number | Pending settlement cash |
| >> currency | String | Currency |
| > frozenTransactionFees | List<Object> | Frozen transaction fees (can be empty array) |