Add SubAccount API
POST
/api/v1/broker/nd/account/apikey
Description
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-broker.kucoin.com/api/v1/broker/nd/account/apikey' \
--header 'Content-Type: application/json' \
--data-raw '{
"uid": "226383154",
"passphrase": "11223344",
"ipWhitelist": [
"127.0.0.1","123.123.123.123"
],
"permissions": [
"general","spot"
],
"label": "This is remarks"
}'
Response Response Example
{
"code": "200000",
"data": {
"uid": "226383154",
"label": "This is remarks",
"apiKey": "671afb36cee20f00015cfaf1",
"secretKey": "d694df2******5bae05b96",
"apiVersion": 3,
"permissions": [
"General",
"Spot"
],
"ipWhitelist": [
"127.0.0.1",
"123.123.123.123"
],
"createdAt": 1729821494000
}
}
Request
Body Params application/json
Responses
Modified at 7 months ago