Get V1 Historical Deposits List
Request via this endpoint to get the V1 historical deposits list on KuCoin. The return value is the data after Pagination, sorted in descending order according to time.
TIP
The data of the latest one month will be queried by default.
HTTP REQUEST
GET /api/v1/hist-deposits
Example
GET /api/v1/hist-deposits
{
"currentPage": 1,
"pageSize": 1,
"totalNum": 9,
"totalPage": 9,
"items": [
{
"currency": "BTC",
"createAt": 1528536998,
"amount": "0.03266638",
"walletTxId": "55c643bc2c68d6f17266383ac1be9e454038864b929ae7cee0bc408cc5c869e8",
"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
:5
TIP
This request is paginated
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
currency | String | No | Currency |
status | String | No | Status. Available value: PROCESSING, SUCCESS, and FAILURE |
startAt | long | No | Start time (milisecond) |
endAt | long | No | End time (milisecond) |
RESPONSES
Param | Description |
---|---|
amount | Deposit amount |
currency | Currency |
isInner | Internal deposit or not |
walletTxId | Wallet Txid |
createAt | Creation time of the database record |
status | Status |