Get Spot Transaction History
Info
- This endpoint requires signature. For specific signature rules, please refer to Authentication
- This endpoint will trigger rate limit. For specific rules, please refer to Rate Limit.
HTTP request
GET /assets/spot/transcation-history
Request parameters
Parameter Name | Required | Type | Notes |
---|---|---|---|
ccy | false | string | Currency name |
type | true | string | Transaction history type |
start_time | false | int | Query start time.
|
end_time | false | int | Query end time.
|
page | false | int | Number of pagination. Default is 1 |
limit | false | int | Number in each page. Default is 10 |
Return parameters
Parameter Name | Type | Notes |
---|---|---|
created_at | int | Transfer application time |
ccy | string | Currency name |
type | string | Transaction history type |
balance | string | Balance after change |
change | string | Change in assets |
Request example
GET /assets/spot/transcation-history?ccy=USDT&type=trade
Response example
{
"code": 0,
"data": [
{
"balance": "754229.6168433304684",
"ccy": "USDT",
"change": "-9.6004",
"created_at": 1724718246349,
"type": "trade"
},
{
"balance": "754239.2172433304684",
"ccy": "USDT",
"change": "-57.776",
"created_at": 1724715903850,
"type": "trade"
}
],
"message": "OK"
}