Get Futures Transfer-Out Request Records
The data of the first page will be queried by default.
HTTP REQUEST
GET /api/v1/transfer-list
Example
GET /api/v1/transfer-list?currentPage=1&pageSize=50&status=PROCESSING?currency=XBT
{
"currentPage": 1,
"pageSize": 50,
"totalNum": 1,
"totalPage": 1,
"items": [
{
"applyId": "620a0bbefeaa6a000110e833", //Transfer-out request ID
"currency": "USDT", //Currency
"recRemark": "", //Receive account tx remark
"recSystem": "KUCOIN", //Receive system
"status": "SUCCESS", //Status PROCESSING, SUCCESS, FAILURE
"amount": "0.001", //Transaction amount
"reason": "", //Reason caused the failure
"offset": 889048787670001, //Offset
"createdAt": 1644825534000, //Request application time
"remark": "" //User remark
}
]
}
API KEY PERMISSIONS
This endpoint requires the General permission.
REQUEST URL
This endpoint support Futures URL
REQUEST RATE LIMIT
Manage weight
:20
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
startAt | long | No | Start time (milisecond) |
endAt | long | No | End time (milisecond) |
status | String | No | Status PROCESSING, SUCCESS, FAILURE |
queryStatus | List | No | Status List PROCESSING, SUCCESS, FAILURE |
currency | String | No | Currency, including XBT,USDT |
currentPage | long | No | Current request page, The default currentPage is 1 |
pageSize | long | No | pageSize, The default pageSize is 50 |
TIP
Supplementary instructions for startAt and endAt: startAt must be less than endAt; and the interval cannot exceed 1 day; only one field is allowed, and if only one field is passed, another field will be automatically added or subtracted by the system 1 day to complete
RESPONSES
Param | Description |
---|---|
applyId | Transfer-out request ID |
currency | Currency |
recRemark | Receive account tx remark |
recSystem | Receive system |
status | Status PROCESSING, SUCCESS, FAILURE |
amount | Transaction amount |
reason | Reason caused the failure |
offset | Offset |
createdAt | Request application time |
remark | User remark |