查询子分组详情
返回子分组信息,包括交易量、费用等级和子账户详细信息
HTTP 请求
GET /sapi/v1/vip/link-plus/subgroups/detail
权重(IP)
1
请求参数
| 名称 | 类型 | 是否必需 | 描述 |
|---|---|---|---|
| RecvWindow | LONG | NO | No more than 60000 |
| timestamp | LONG | YES | |
| groupId | LONG | NO | Query specific groups. Support multiple values. Max number of groupId is 50. Example: &groupId=1001&groupId=1002 Default: query all active groups |
响应示例
{
"status": "OK",
"type": "GENERAL",
"code": "000000000",
"data": [
{
"groupId": 1001,
"groupName": "arbitration",
"accountLimit": 50,
"tradeLevel": 2,
"feeTier": 1,
"groupAssets": "1000.0",
"group30dSpotVol": "1000.0",
"group30dFutVol": "1000.0",
"subAccounts": [
{
"accountId": 1000200159113,
"accountEmail": "account_1@test.com",
"accountAsset": "1000.0",
"accountDailySpotVol": "1000.0",
"accountDailyFutVol": "1000.0",
"account30dSpotVol": "1000.0",
"account30dFutVol": "1000.0"
},
{
"accountId": 1000200159112,
"accountEmail": "account_2@test.com",
"accountAsset": "1000.0",
"accountDailySpotVol": "1000.0",
"accountDailyFutVol": "1000.0",
"account30dSpotVol": "1000.0",
"account30dFutVol": "1000.0"
},
{
"accountId": 1000200159111,
"accountEmail": "account_3@test.com",
"accountAsset": "1000.0",
"accountDailySpotVol": "1000.0",
"accountDailyFutVol": "1000.0",
"account30dSpotVol": "1000.0",
"account30dFutVol": "1000.0"
}
]
}
]
}