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â
| Parameters | Type | Required | Description |
|---|---|---|---|
| orderId | String | No | Convert order ID |
| startTime | String | No | Start time Unix millisecond timestamp Data from the last 90 days is available; the maximum time range per query is 30 days |
| endTime | String | No | End time Unix millisecond timestamp Data from the last 90 days is available; the maximum time range per query is 30 days |
| limit | String | No | Number of results per page Default: 20, Maximum: 100 |
| cursor | String | No | 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 |
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â
| Parameters | Type | Description |
|---|---|---|
| list | List | List |
| >orderId | String | Convert order ID |
| >fromCoin | String | Coin to convert |
| >fromAmount | String | Amount to convert |
| >fromCoinPrice | String | Price of the coin at conversion time |
| >toCoin | String | Target coin |
| >toAmount | String | Target coin amount |
| >toCoinPrice | String | Target coin price at conversion time |
| >feeDetail | String | Fee details |
| >> fee | String | Fee amount |
| >> feeCoin | String | Fee coin |
| status | String | Convert status - success |
| createdTime | String | Convert time |