Skip to main content

Get Small Balance Coins

Query small-balance coins with a USDT equivalent of less than 10 USDT, and ensure that the total amount for each conversion transaction is between 1.0e-8 and 200 USDT.

info
  • api key permission: Convert
  • api rate limit: 10 req /s

HTTP Request

GET /v5/asset/covert/small-balance-list

Request Parameters

ParameterRequiredTypeComments
accountTypetruestringWallet type eb_convert_uta, support Unified wallet only
fromCoinfalsestringSource currency

Response Parameters

ParameterTypeComments
smallAssetCoinsarray<object>Small balance info
> fromCoinstringSource currency
> supportConvertinteger1: support, 2: not supported
> availableBalancestringAvailable balance, the value might be bigger than the actual balance you can convert
> baseValuestringUSDT equivalent value
> toAmountstringIgnore, reserved field
> exchangeRatestringIgnore, reserved field
> feeInfonullIgnore, reserved field
> taxFeeInfonullIgnore, reserved field
supportToCoinsarray["MNT","USDT","USDC"]

Request Example

GET /v5/asset/covert/small-balance-list?fromCoin=XRP&accountType=eb_convert_uta HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1766125546001
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"smallAssetCoins": [
{
"fromCoin": "XRP",
"supportConvert": 1,
"availableBalance": "0.0002",
"baseValue": "0.00036554008",
"toCoin": "",
"toAmount": "",
"exchangeRate": "",
"feeInfo": null,
"taxFeeInfo": null
}
],
"supportToCoins": [
"MNT",
"USDT",
"USDC"
]
},
"retExtInfo": {},
"time": 1766125546274
}