Get V1 Historical Withdrawals List
List of KuCoin V1 historical withdrawals. The return value is the data after Pagination, sorted in descending order according to time.
TIP
Default query for one month of data.
HTTP REQUEST
GET /api/v1/hist-withdrawals
Example
GET /api/v1/hist-withdrawals
{
"currentPage": 1,
"pageSize": 1,
"totalNum": 2,
"totalPage": 2,
"items": [
{
"currency": "BTC",
"createAt": 1526723468,
"amount": "0.534",
"address": "33xW37ZSW4tQvg443Pc7NLCAs167Yc2XUV",
"walletTxId": "aeacea864c020acf58e51606169240e96774838dcd4f7ce48acf38e3651323f4",
"isInner": false,
"status": "SUCCESS"
}
]
}
API KEY PERMISSIONS
This endpoint requires the General permission.
REQUEST URL
This endpoint support Spot URL
REQUEST RATE LIMIT
Manage weight
:20
TIP
This request is paginated
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
currency | String | No | Currency |
status | String | No | Status. Available value: PROCESSING, SUCCESS, FAILURE |
startAt | long | No | Start time (milisecond) |
endAt | long | No | End time (milisecond) |
RESPONSES
Param | Description |
---|---|
amount | Withdrawal amount |
currency | Currency |
isInner | Internal deposit or not |
walletTxId | Wallet Txid |
createAt | Creation time of the database record |
status | Status |