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 Broker Info

GET
/api/v1/broker/nd/info
Description
This endpoint supports querying the basic information of the current 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/info?begin=20240510&end=20241010&tradeType=1'
Response Response Example
{
    "code": "200000",
    "data": {
        "accountSize": 0,
        "maxAccountSize": null,
        "level": 0
    }
}

Request

Query Params
begin
string 
required
Start time, for example: 20230110
Example:
20240510
end
string 
required
End time, for example: 20230210 (query data with a maximum interval of 6 months)
Example:
20241010
tradeType
enum<string> 
required
Transaction type, 1: spot 2: futures
Allowed values:
12
Example:
1

Responses

🟢200OK
application/json
Body
code
string 
required
data
object 
required
accountSize
integer 
required
Number of sub-accounts created
maxAccountSize
integer 
required
The maximum number of sub-accounts allowed to be created, null means no limit
level
integer 
required
Broker level
Modified at 7 months ago
Previous
Get Broker Rebate
Next
Get SubAccount