Withdrawals
Get Withdrawals List
HTTP REQUEST
GET /api/v1/withdrawals
Example
GET /api/v1/withdrawals
{
"code": "200000",
"data": {
"currentPage": 1,
"pageSize": 50,
"totalNum": 1,
"totalPage": 1,
"items": [
{
"id": "63564dbbd17bef00019371fb",
"currency": "XRP",
"chain": "xrp",
"status": "SUCCESS",
"address": "rNFugeoj3ZN8Wv6xhuLegUBBPXKCyWLRkB",
"memo": "1919537769",
"isInner": false,
"amount": "20.50000000",
"fee": "0.50000000",
"walletTxId": "2C24A6D5B3E7D5B6AA6534025B9B107AC910309A98825BF5581E25BEC94AD83B",
"createdAt": 1666600379000,
"updatedAt": 1666600511000,
"remark": "test"
}
]
}
}
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 , WALLET_PROCESSING , SUCCESS , FAILURE |
startAt | long | No | Start time (milisecond) |
endAt | long | No | End time (milisecond) |
RESPONSES
Param | Description |
---|---|
id | Unique identity |
address | Withdrawal address |
memo | Address remark. If there’s no remark, it is empty. When you withdraw from other platforms to the KuCoin, you need to fill in memo(tag). If you do not fill memo (tag), your deposit may not be available, please be cautious. |
currency | Currency |
chain | The chain of currency |
amount | Withdrawal amount |
fee | Withdrawal fee |
walletTxId | Wallet Txid |
isInner | Internal withdrawal or not |
status | status |
remark | remark |
createdAt | Creation time |
updatedAt | Update time |