Skip to main content

Get Sub-Account API KEY List

Info
  • This endpoint requires signature. For specific signature rules, please refer to Authentication
  • This endpoint will trigger rate limit. For specific rules, please refer to Rate Limit.
Reminder
  • This endpoint can only be accessed using the ACCESS ID of the main account

HTTP request

GET /account/subs/api

Request parameters

Parameter NameRequiredTypeNotes
sub_user_nametruestringSub-account username
pagefalseintNumber of pagination. Default is 1
limitfalseintNumber in each page. Default is 10

Return parameters

Parameter NameTypeNotes
api_idintUnique ID for API KEY.
created_atintData creation time
access_idstringaccess_id of the key pair
secret_keystringsecret_key of the key pair
ip_whitelist[]stringThe IP whitelist bound to API KEY.
trade_enabledboolWhether the API KEY has trading permissions.
withdraw_enabledboolWhether the API KEY has withdrawal permissions.
is_expiredboolWhether the API KEY has expired.
  • If the IP whitelist has been bound, the API KEY will never expire.
  • If the IP whitelist is not bound, the API KEY is valid for three months.
expires_atintExpiration time of API KEY.
  • 0 means the API KEY is permanently valid.
remarkstringAPI KEY note

Request example

GET /account/subs/api?sub_user_name=sub2&page=1&limit=2

Response example

{
"code": 0,
"data": [
{
"api_id": 554,
"created_at": 1642145331234,
"access_id": "xxxxxxxxxx",
"secret_key": "xxxxxx",
"ip_whitelist": [
"1.1.1.1"
],
"trade_enabled": true,
"withdraw_enabled": false,
"is_expired": false,
"expires_at": 0,
"remark": "spot market maker"
},
],
"pagination": {
"total": 1,
"has_next": false
},
"message": "OK"
}