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 Detail

GET
/api/v3/broker/nd/deposit/detail
Description
This endpoint supports querying the deposit record of sub-accounts created by a Broker (excluding main account of nd broker)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-broker.kucoin.com/api/v3/broker/nd/deposit/detail?currency=USDT&hash=30bb0e0b***4156c5188'
Response Response Example
{
  "data" : {
    "chain" : "trx",
    "hash" : "30bb0e0b***4156c5188",
    "walletTxId" : "30bb0***610d1030f",
    "uid" : 201496341,
    "updatedAt" : 1713429174000,
    "amount" : "8.5",
    "memo" : "",
    "fee" : "0.0",
    "address" : "THLPzUrbd1o***vP7d",
    "remark" : "Deposit",
    "isInner" : false,
    "currency" : "USDT",
    "status" : "SUCCESS",
    "createdAt" : 1713429173000
  },
  "code" : "200000"
}

Request

Query Params
currency
string 
required
Currency
Example:
USDT
hash
string 
required
Hash Value
Example:
30bb0e0b***4156c5188

Responses

🟢200OK
application/json
Body
code
string 
required
data
object 
required
chain
string 
required
chain id of currency
hash
string 
required
Hash
walletTxId
string 
required
Wallet Transaction ID
uid
integer 
required
UID
updatedAt
integer <int64>
required
Update Time (milliseconds)
amount
string 
required
Amount
memo
string 
required
Memo
fee
string 
required
Fee
address
string 
required
Address
remark
string 
required
Remark
isInner
boolean 
required
Is Internal (true or false)
currency
string 
required
Currency
status
enum<string> 
required
Status (PROCESSING, SUCCESS, FAILURE)
Allowed values:
SUCCESSFAILUREPROCESSING
createdAt
integer <int64>
required
Creation Time (milliseconds)
Modified at 2024-12-27 08:16:26
Previous
Get Withdraw Detail
Next
Delete SubAccount API