Get Small Assets
Get Small Assets
Descriptionâ
Query the list of small-value assets currently held in the unified account. A small-value asset is defined as a position worth less than 5 USDT when converted. The target coin supports BGB.
HTTP Requestâ
- GET /api/v3/convert/small-assets
- Rate limit: 10/sec/UID
- Permission: UTA mgt. (read)
Request
curl "https://api.bitget.com/api/v3/convert/small-assets" \
-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â
N/A
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": [
{
"coin": "DOGE",
"available": "12.5",
"estimatedCoin": "BGB",
"estimatedAmount": "0.8",
"feeDetail": {
"feeRate": "0.001",
"fee": "0.0008"
},
"cTime": "1740000000000"
}
]
}
Response Parametersâ
| Parameters | Type | Description |
|---|---|---|
| coin | String | Coin name |
| available | String | Available balance of the coin |
| estimatedCoin | String | Estimated target coin - BGB |
| estimatedAmount | String | Estimated convert amount |
| feeDetail | String | Fee details |
| > feeRate | String | Fee rate |
| > fee | String | Fee amount |
| cTime | String | Current time |