Skip to main content

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 NameRequiredTypeNotes
ccytruestringCurrency name
marketfalsestringMarket name
transfer_typetruestringTransfer type.
Must be one of MARGIN or FUTURES.
start_timefalseintQuery start time.
  • Data will not be filtered based on time by default
end_timefalseintQuery end time.
  • Data will not be filtered based on time by default
pagefalseintNumber of pagination. Default is 1.
limitfalseintNumber in each page. Default is 10.

Return parameters

Parameter NameTypeNotes
idintUnique ID
margin_marketstringMargin market, null for non-margin markets
created_atintTransfer application time
from_account_typestringSender's account type
to_account_typestringReceiver's account type
ccystringCurrency name
amountstringTransfer amount
statusstringTransfer 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
}
}