Bitget APIBitget API
UTAClassic
Legacy Doc
  • Overview
  • API Documentation
  • WebSocket
  • Agent Hub
  • SDK
  • Changelog
Copied to clipboard
Account
    Assets & Balance
      Get Account AssetsgetGet Account Funding AssetsgetGet Financial RecordsgetGet Funding Financial RecordsgetGet Account Fee RategetGet Max TransferablegetGet Max WithdrawalgetSet Collateral TypepostGet Collateral TypegetGet Custom Collateral Coinsget
    Account Settings
      Get Account InfogetGet Account SettinggetPre Set LeveragegetSet LeveragepostSet Holding ModepostSwitch DeductpostGet Deduct InfogetSwitch AccountpostGet Switch StatusgetSet MarginpostGet Delta InfogetAdjust Account Modepost
    Margin & Borrow/Repay
      Get Repayable CoinsgetGet Payment CoinsgetRepaypostGet Convert Recordsget
    Trading Risk & Position Config
      Get OI LimitgetGet All Symbol Fee RatesgetGet Eligible SymbolsgetGet Eligible Margin TiergetGet Eligible Loan InfogetGet Eligible Discount Rateget
    Sub Accounts
      Create Sub-accountpostFreeze/Unfreeze Sub-accountpostGet Sub-account ListgetGet Sub-account Unified AssetsgetCreate Sub-account API KeypostModify Sub-account API KeypostDelete Sub-account API KeypostGet Sub-account API KeysgetCreate Agent Sub-accountpost
    Deposit/Withdrawal & Transfer
      Set Up Deposit AccountpostGet Deposit AddressgetGet Sub Deposit AddressgetGet Deposit RecordsgetGet Sub Deposit RecordsgetWithdrawalpostCancel WithdrawalpostGet Withdrawal RecordsgetGet Withdraw Address BookgetGet Transferable CoinsgetTransferpostMain-Sub Account TransferpostGet Main-Sub Account Transfer RecordsgetSub-Main Account Transferpost
    Small Assets Convert
      Get Small Assets HistorygetGet Small AssetsgetSmall Assets Tradepost
    Institutional Rate Limit
      Get RateLimit QuotagetSet RateLimit Quotapost
Account
Account

Small Assets Convert

Small Assets Convert


Get Small Assets History

GET
https://api.bitget.com
/api/v3/convert/small-assets-history

Query historical small asset convert orders under the unified account. Supports filtering by time range and cursor-based pagination. Data from the last 90 days is available; the maximum time range per query is 30 days.

  • Rate limit: 10/sec/UID
  • Permission: UTA mgt. (read)

Get Small Assets History › Request Parameters

orderId
​string

Convert order ID

startTime
​string

Start time Unix millisecond timestamp Data from the last 90 days is available; the maximum time range per query is 30 days

endTime
​string

End time Unix millisecond timestamp Data from the last 90 days is available; the maximum time range per query is 30 days

limit
​string

Number of results per page Default: 20, Maximum: 100

cursor
​string

Cursor Used for pagination. Leave empty for the first query. For subsequent pages, use the smallest orderId returned from the previous query; the result will return data smaller than that value. This can shorten query response time

Get Small Assets History › Response Parameters

200

Successful response

code
​string
msg
​string
requestTime
​integer
​object
​object[]

List

status
​string

Convert status

  • success
createdTime
​string

Convert time

GET/api/v3/convert/small-assets-history
curl https://api.bitget.com/api/v3/convert/small-assets-history
Example Responses
{ "code": "00000", "msg": "success", "requestTime": 1740000000000, "data": { "list": [ { "orderId": "1234567890123456789", "fromCoin": "DOGE", "fromAmount": "12.5", "fromCoinPrice": "0.064", "toCoin": "BGB", "toAmount": "0.8", "toCoinPrice": "0.8", "feeDetail": { "fee": "0.0008", "feeCoin": "BGB" }, "status": "success", "createdTime": "1740000000000" } ], "cursor": "1234567890123456789" } }
json
application/json

Get Small Assets

GET
https://api.bitget.com
/api/v3/convert/small-assets

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.

  • Rate limit: 10/sec/UID
  • Permission: UTA mgt. (read)

Get Small Assets › Response Parameters

200

Successful response

code
​string
msg
​string
requestTime
​integer
​object[]
coin
​string

Coin name

available
​string

Available balance of the coin

estimatedCoin
​string

Estimated target coin

  • BGB
estimatedAmount
​string

Estimated convert amount

​object

Fee details

cTime
​string

Current time

GET/api/v3/convert/small-assets
curl https://api.bitget.com/api/v3/convert/small-assets
Example Responses
{ "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" } ] }
json
application/json

Small Assets Trade

POST
https://api.bitget.com
/api/v3/convert/small-assets-trade

Convert one or more specified small-value assets in the unified account into the target coin with one click.

  • Rate limit: 10/sec/UID
  • Permission: UTA trade

Small Assets Trade › Request Parameters

fromCoinList
​string[] · required

Coins to convert

Small Assets Trade › Response Parameters

200

Successful response

code
​string
msg
​string
requestTime
​integer
​object
fromCoin
​string[]

Coins to convert

toCoin
​string

Target coin

orderId
​string

Convert order ID

POST/api/v3/convert/small-assets-trade
curl https://api.bitget.com/api/v3/convert/small-assets-trade \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "fromCoinList": [ "string" ] }'
Example Request Body
{ "fromCoinList": [ "string" ] }
json
Example Responses
{ "code": "00000", "msg": "success", "requestTime": 1740000000000, "data": { "fromCoin": [ "DOGE", "XRP" ], "toCoin": "BGB", "orderId": "1234567890123456789" } }
json
application/json

Deposit/Withdrawal & TransferInstitutional Rate Limit