Small Assets Trade
Small Assets Trade
Descriptionâ
Convert one or more specified small-value assets in the unified account into the target coin with one click.
HTTP Requestâ
- POST /api/v3/convert/small-assets-trade
- Rate limit: 10/sec/UID
- Permission: UTA trade
Request
curl -X POST "https://api.bitget.com/api/v3/convert/small-assets-trade" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json" \
-d '{"fromCoinList": ["DOGE", "XRP"]}'
Request Parametersâ
| Parameters | Type | Required | Description |
|---|---|---|---|
| fromCoinList | List<String> | Yes | Coins to convert |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"fromCoin": ["DOGE", "XRP"],
"toCoin": "BGB",
"orderId": "1234567890123456789"
}
}
Response Parametersâ
| Parameters | Type | Description |
|---|---|---|
| fromCoin | List<String> | Coins to convert |
| toCoin | String | Target coin |
| orderId | String | Convert order ID |