ND Broker
  1. Exchange Broker
ND Broker
  • REST
    • Broker
      • Beginners
        • Introduction
        • Broker Application
        • Instructions
      • API Broker
        • Introduction
        • Get Broker Rebate
      • Exchange Broker
        • Introduction
        • Submit KYC
          POST
        • Get KYC Status
          GET
        • Get KYC Status List
          GET
        • Get Broker Rebate
          GET
        • Get Broker Info
          GET
        • Get SubAccount
          GET
        • Get SubAccount API
          GET
        • Get Deposit List
          GET
        • Get Transfer History
          GET
        • Get Withdraw Detail
          GET
        • Get Deposit Detail
          GET
        • Delete SubAccount API
          DELETE
        • Add SubAccount
          POST
        • Add SubAccount API
          POST
        • Modify SubAccount API
          POST
        • Transfer
          POST
      • User Service
  1. Exchange Broker

Get Deposit List

GET
/api/v1/asset/ndbroker/deposit/list
Description
This endpoint can obtain the deposit records of each sub-account under the ND Broker.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-broker.kucoin.com/api/v1/asset/ndbroker/deposit/list?currency=USDT&status=SUCCESS&hash&startTimestamp&endTimestamp&limit=100'
Response Response Example
{
    "code": "200000",
    "data": [
        {
            "uid": 165111215,
            "hash": "6724e363a492800007ec602b",
            "address": "xxxxxxx@gmail.com",
            "memo": "",
            "amount": "3.0",
            "fee": "0.0",
            "currency": "USDT",
            "isInner": true,
            "walletTxId": "bbbbbbbbb",
            "status": "SUCCESS",
            "chain": "",
            "remark": "",
            "createdAt": 1730470760000,
            "updatedAt": 1730470760000
        }
    ]
}

Request

Query Params
currency
string 
optional
currency
Example:
USDT
status
string 
optional
Status. Available value: PROCESSING, SUCCESS, FAILURE
Example:
SUCCESS
hash
string 
optional
hash
startTimestamp
integer <int64>
optional
Start time (milisecond)
endTimestamp
integer <int64>
optional
End time (milisecond),Default sorting in descending order
limit
integer 
optional
Maximum number of returned items, maximum 1000, default 1000
<= 1000
Default:
1000
Example:
100

Responses

🟢200OK
application/json
Body
success
boolean 
required
code
string 
required
msg
string 
required
retry
boolean 
required
data
array [object {14}] 
required
uid
number 
required
deposit uid
hash
string 
required
hash
address
string 
required
Deposit address
memo
string 
required
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
string 
required
Deposit amount
fee
string 
required
Fees charged for deposit
currency
string 
required
currency
isInner
boolean 
required
Internal deposit or not
walletTxId
string 
required
Wallet Txid
status
enum<string> 
required
Status. Available value: PROCESSING, SUCCESS, FAILURE
Allowed values:
PROCESSINGSUCCESSFAILURE
remark
string 
required
remark
chain
string 
required
chain name of currency
createdAt
integer <int64>
required
Creation time of the database record
updatedAt
integer <int64>
required
Update time of the database record
Modified at 2024-12-27 08:16:26
Previous
Get SubAccount API
Next
Get Transfer History