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

Add SubAccount

POST
/api/v1/broker/nd/account
Description
This endpoint supports Broker users to create sub-accounts
Request Request Example
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
curl --location --request POST 'https://api-broker.kucoin.com/api/v1/broker/nd/account' \
--header 'Content-Type: application/json' \
--data-raw '{
    "accountName": "Account1"
}'
Response Response Example
{
    "code": "200000",
    "data": {
        "accountName": "Account15",
        "uid": "226383154",
        "createdAt": 1729819381908,
        "level": 0
    }
}

Request

Body Params application/json
accountName
string 
required
Sub Account Name, Note that this name is unique across the exchange. It is recommended to add a special identifier to prevent name duplication.
Examples

Responses

🟢200OK
application/json
Body
code
string 
required
data
object 
required
accountName
string 
required
Sub-Account name
uid
string 
required
Sub-Account UID
createdAt
integer <int64>
required
Creation time, unix timestamp (milliseconds)
level
integer 
required
Subaccount VIP level
Modified at 8 months ago
Previous
Delete SubAccount API
Next
Add SubAccount API