Get Asset Transfer Record
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/transfer-history
Request parameters
Parameter Name | Required | Type | Notes |
---|---|---|---|
ccy | true | string | Currency name |
market | false | string | Market name |
transfer_type | true | string | Transfer type. Must be one of MARGIN or FUTURES . |
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 |
---|---|---|
id | int | Unique ID |
margin_market | string | Margin market, null for non-margin markets |
created_at | int | Transfer application time |
from_account_type | string | Sender's account type |
to_account_type | string | Receiver's account type |
ccy | string | Currency name |
amount | string | Transfer amount |
status | string | Transfer status |
Request example
GET /assets/transfer-history?ccy=CET&transfer_type=MARGIN&start_time=1636451914231&page=1&limit=100
Response example
{
"code": 0,
"message": "OK",
"data": [
{
"id": 18474,
"margin_market": "CETUSDT",
"created_at": 1636443179213,
"from_account_type": "SPOT",
"to_account_type": "MARGIN",
"ccy": "USDT",
"amount": "1",
"status": "finished"
}
],
"pagination": {
"total": 1,
"has_next": false
}
}