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 SubAccount

GET
/api/v1/broker/nd/account
Description
This interface supports querying sub-accounts created by Broker
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/v1/broker/nd/account?uid=226383154&currentPage=1&pageSize=20'
Response Response Example
{
    "code": "200000",
    "data": {
        "currentPage": 1,
        "pageSize": 20,
        "totalNum": 1,
        "totalPage": 1,
        "items": [
            {
                "accountName": "Account15",
                "uid": "226383154",
                "createdAt": 1729819382000,
                "level": 0
            }
        ]
    }
}

Request

Query Params
uid
string 
optional
Sub-account UID
Example:
226383154
currentPage
integer 
optional
Current page, default is 1
Default:
1
Example:
1
pageSize
integer 
optional
The number returned per page, the default is 20, the maximum is 100
>= 1<= 100
Default:
20
Example:
20

Responses

🟢200OK
application/json
Body
code
string 
required
data
object 
required
currentPage
integer 
required
Current page
pageSize
integer 
required
Page Size
totalNum
integer 
required
Total Number
totalPage
integer 
required
Total Page
items
array [object {4}] 
required
Modified at 4 months ago
Previous
Get Broker Info
Next
Get SubAccount API