Skip to main content

Get Small Assets History

Get Small Assets History

Description​

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.

HTTP Request​

  • GET /api/v3/convert/small-assets-history
  • Rate limit: 10/sec/UID
  • Permission: UTA mgt. (read)
Request
curl "https://api.bitget.com/api/v3/convert/small-assets-history" \
-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​

ParametersTypeRequiredDescription
orderIdStringNoConvert order ID
startTimeStringNoStart time
Unix millisecond timestamp
Data from the last 90 days is available; the maximum time range per query is 30 days
endTimeStringNoEnd time
Unix millisecond timestamp
Data from the last 90 days is available; the maximum time range per query is 30 days
limitStringNoNumber of results per page
Default: 20, Maximum: 100
cursorStringNoCursor
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
Response
{
"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"
}
}

Response Parameters​

ParametersTypeDescription
listListList
>orderIdStringConvert order ID
>fromCoinStringCoin to convert
>fromAmountStringAmount to convert
>fromCoinPriceStringPrice of the coin at conversion time
>toCoinStringTarget coin
>toAmountStringTarget coin amount
>toCoinPriceStringTarget coin price at conversion time
>feeDetailStringFee details
>> feeStringFee amount
>> feeCoinStringFee coin
statusStringConvert status
- success
createdTimeStringConvert time

How was your Reading Experience with us?

★
★
★
★
â˜