Skip to main content

Transfer History

Transfer History

Query transfer history

Request frequency limit: 1/1s

Request URL

GET /deepcoin/internal-transfer/history-order

Request Parameters

Field NameRequiredTypeDescription
accountfalsestringRecipient account
coinfalsestringCurrency
statusfalsestringTransfer status
Processing: 1
Approved: 2
Rejected: 3
receiverUIDfalsestringRecipient UID
orderIdfalsestringOrder ID
startTimefalseintStart timestamp, cannot exceed the last 6 months
endTimefalseintEnd timestamp, cannot exceed the last 6 months
pagefalseintPage number, default 1
sizefalseintResults per page, default 10

Response Parameters

Field NameTypeDescription
dataarrayData
>receiverAccountTypestringRecipient account type
>receiverAccountstringRecipient account
>receiverUIDstringRecipient UID
>coinstringCurrency
>orderIdstringOrder ID
>amountstringTransfer amount, excluding fees
>statusstringStatus
>createTimeintCreation timestamp
>transferWaystringTransfer method
>updateTimeintLast update timestamp
countintTotal count
pageintCurrent page number
sizeintResults per page

Response Example

{
"code": "0",
"msg": "",
"data": {
"data": [
{
"orderId": "49e39268-42e8-4dfb-bd56-e0eff5b7c455",
"receiverAccountType": "phone",
"receiverAccount": "",
"coin": "USDT",
"amount": "10",
"transferWay": "OpenAPI",
"status": "In Process",
"receiverUID": 36007196,
"createTime": 1739258691,
"updateTime": 1739258691
},
{
"orderId": "40ce50f2-a96d-4efc-8168-148fd82df25f",
"receiverAccountType": "phone",
"receiverAccount": "",
"coin": "USDT",
"amount": "10",
"transferWay": "OpenAPI",
"status": "In Process",
"receiverUID": 36007196,
"createTime": 1739258558,
"updateTime": 1739258558
}
],
"count": 2,
"page": 1,
"size": 10
}
}