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 KYC Status

GET
/api/kyc/ndBroker/proxyClient/status/list
Description
This endpoint can query the specified Kyc status
Request Request Example
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
curl --location --request GET 'https://api-broker.kucoin.com/api/kyc/ndBroker/proxyClient/status/list?clientUids='
Response Response Example
{
    "code": "200000",
    "data": [
        {
            "clientUid": 226383154,
            "status": "PROCESS",
            "rejectReason": null
        }
    ]
}

Request

Query Params
clientUids
string 
required
Client uid, Use commas to separate multiple UIDs
Examples:
226383154226383154,22341356

Responses

🟢200OK
application/json
Body
code
string 
required
data
array [object {3}] 
required
clientUid
integer 
required
client uid
status
enum<string> 
required
KYC status
Allowed values:
NONEPROCESSPASSREJECT
rejectReason
string 
optional
Reject Reason
Modified at 6 months ago
Previous
Submit KYC
Next
Get KYC Status List