Spot Transaction History
Frequency limit: 1 times/1s (User ID)
Description
Spot transaction history
HTTP Request
- GET /api/v2/tax/spot-record
Request Example
curl "https://api.bitget.com/api/v2/tax/spot-record?startTime=1686128558000&endTime=1686214958000&limit=100" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json" \
Request parameters
Parameter | Type | Required | Description |
---|---|---|---|
coin | String | No | Default all coin type |
startTime | String | Yes | Start time, Unix millisecond timestamps |
endTime | String | Yes | End time, Unix millisecond timestamps The maximum interval between startTime and endTime is 366 days. |
limit | String | No | Default: 500, maximum: 500 |
idLessThan | String | No | The last recorded ID |
Response example
{
"code": "00000",
"msg": "success",
"requestTime": 1687257612262,
"data": [
{
"id": "1050266154437103616",
"coin": "AIBB",
"spotTaxType": "Interest",
"amount": "6018333.33333333",
"fee": "0",
"balance": "468575833.33333306",
"ts": "1686128884851"
}
]
}
Response parameters
Parameter | Type | Description |
---|---|---|
id | String | Record ID |
coin | String | Coin |
spotTaxType | String | tax type spot |
amount | String | Quantity |
fee | String | Transaction fee |
balance | String | Total accounts |
ts | String | When this record was generated Timestamp |