Convert dust coins to BNB
POST
/ver1/accounts/:account_id/convert_dust_to_bnbConversion of any other currency into the specific BNB currency.
This endpoint is applicable to the Binance Spot exchange.
Example Request
POST
/ver1/accounts/12345678/convert_dust_to_bnb{
"codes": ["USDT"]
}
Response Parameters
Hide child parametersShow child parameters
Example Responses
- 201 Created
- 400 Bad Request
- 403 Forbidden
- 422 Unprocessable Entity
{
"totalTransfered": "0.00076178",
"totalServiceCharge": "0.00001523",
"transferResult": [
{
"tranId": 243385046044,
"fromAsset": "USDT",
"amount": "0.51389388",
"transferedAmount": "0.00076178",
"serviceChargeAmount": "0.00001523",
"operateTime": 1739799333228
}
]
}
{
"error": "record_invalid",
"error_description": "Invalid parameters",
"error_attributes": {
"codes": [
"is invalid"
]
}
}
{
"error": "Forbidden. Unavailable for this account type."
}
{
"error_description": "Small balances can be converted only once every 6h",
"error": "bnb_dust_limit_error"
}