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 Name | Required | Type | Notes |
---|---|---|---|
sub_user_name | true | string | Sub-account username |
page | false | int | Number of pagination. Default is 1 |
limit | false | int | Number in each page. Default is 10 |
Return parameters
Parameter Name | Type | Notes |
---|---|---|
api_id | int | Unique ID for API KEY. |
created_at | int | Data creation time |
access_id | string | access_id of the key pair |
secret_key | string | secret_key of the key pair |
ip_whitelist | []string | The IP whitelist bound to API KEY. |
trade_enabled | bool | Whether the API KEY has trading permissions. |
withdraw_enabled | bool | Whether the API KEY has withdrawal permissions. |
is_expired | bool | Whether the API KEY has expired.
|
expires_at | int | Expiration time of API KEY.
|
remark | string | API 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"
}