查询子账户API Key列表
描述
支持查询单个子账户下的全部API Key列表
HTTP请求
- GET /api/v3/user/sub-api-list
 - 限频规则: 10次/s/UID
 - 需要统一账户管理读取权限
 - 仅母账户才能调用此接口
 
请求示例
curl -X GET "https://api.bitget.com/api/v3/user/api/v3/user/sub-api-list?subUid=4746345901&limit=100" \
   -H "ACCESS-KEY:*******" \
   -H "ACCESS-SIGN:*" \
   -H "ACCESS-PASSPHRASE:*" \
   -H "ACCESS-TIMESTAMP:1659076670000" \
   -H "locale:en-US" \
   -H "Content-Type: application/json" 
请求参数
| 参数名 | 参数类型 | 是否必须 | 描述 | 
|---|---|---|---|
| subUid | String | 是 | 子账户UID | 
| limit | String | 否 | 每页条目数 默认值为100,最大值为100  | 
| cursor | String | 否 | 游标ID 用于翻页,首次查询不传,查询第二页及后面的数据时,取上一次查询返回的cursor  | 
返回示例
{
  "code": "00000",
  "msg": "success",
  "requestTime": 1740212430491,
  "data": {
    "items": [
      {
        "apiKey": "***********************************",
        "note": "xxxx",
        "type": "read_only",
        "permissions": [
          "uta_trade"
        ],
        "ips": [
          "127.0.0.1"
        ],
        "ts": "1740129303268"
      }
    ],
    "hasNext": false,
    "cursor": "18484"
  }
}
返回参数
| 返回字段 | 参数类型 | 字段说明 | 
|---|---|---|
| cursor | String | 游标ID | 
| hasNext | String | 是否还有下一页数据 | 
| items | Array | 子账户API Key列表 | 
| > apikey | String | 子账户api密钥 | 
| > type | String | 子账户API Key权限类型read_write 读写read_only 只读 | 
| > note | string | 备注名称 | 
| > permissions | Array | 子账户API Key权限列表uta_mgt 统一账户管理uta_trade 统一账户交易 | 
| > ips | Array | 子账户提币IP白名单列表 |