Get Deposit List

Request via this endpoint to get deposit list Items are paginated and sorted to show the latest first. See the Pagination section for retrieving additional entries after the first page.

HTTP REQUEST

GET /api/v1/deposits

Example

GET /api/v1/deposits

{
  "code": "200000",
  "data": {
    "currentPage": 1,
    "pageSize": 50,
    "totalNum": 1,
    "totalPage": 1,
    "items": [
      {
        "currency": "XRP",
        "chain": "xrp",
        "status": "SUCCESS",
        "address": "rNFugeoj3ZN8Wv6xhuLegUBBPXKCyWLRkB",
        "memo": "1919537769",
        "isInner": false,
        "amount": "20.50000000",
        "fee": "0.00000000",
        "walletTxId": "2C24A6D5B3E7D5B6AA6534025B9B107AC910309A98825BF5581E25BEC94AD83B",
        "createdAt": 1666600519000,
        "updatedAt": 1666600549000,
        "remark": "Deposit"
      }
    ]
  }
}
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
startAt long No Start time (milisecond)
endAt long No End time (milisecond)
status String No Status. Available value: PROCESSING, SUCCESS, and FAILURE
RESPONSES
Param Description
address Deposit 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.
amount Deposit amount
fee Fees charged for deposit
currency Currency
chain The chain of currency
isInner Internal deposit or not
walletTxId Wallet Txid
status Status
remark remark
createdAt Creation time of the database record
updatedAt Update time of the database record