Get Account Funding Assets
Get Account Funding Assets
Description
Obtain fund account information and only return the coins with assets.
Note: For Pre-IPO tokens, the coin field uses mixed case, e.g., preSPAX. Please be mindful of case sensitivity. The exact coin value is subject to what is returned by the Get Coin Info API.
HTTP Request
- GET /api/v3/account/funding-assets
- Rate limit: 20/sec/UID
- Permission: UTA mgt. (read)
Request
curl "https://api.bitget.com/api/v3/account/funding-assets" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parameters
| Parameter | Type | Required | Comments |
|---|---|---|---|
| coin | String | No | Coin name |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1750396239013,
"data": [
{
"coin": "BGB",
"available": "0.01",
"frozen": "0",
"balance": "0.01"
},
{
"coin": "USDT",
"available": "0.04",
"frozen": "0",
"balance": "0.04"
}
]
}
Response Example
| Parameters | Type | Description |
|---|---|---|
| coin | String | Coin name |
| balance | String | Balance Unit: the current asset coin |
| available | String | Available Unit: the current asset coin |
| frozen | String | Frozen Unit: the current asset coin |