经纪商持仓详情
获取港股上市证券的完整经纪商持仓详情列表(所有经纪商及其持仓数量)。
SDK Links
Parameters
SDK 方法参数。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 港股代码,例如 700.HK |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"updated_at": "2026.05.13",
"list": [
{
"parti_number": "B01224",
"name": "HSBC Securities",
"strong": false,
"shares": {
"value": "25100",
"chg_1": "4000.0000",
"chg_5": "6100.0000",
"chg_20": "12600.0000",
"chg_60": "8800.0000"
},
"ratio": {
"value": "0.0025",
"chg_1": "0.0004",
"chg_5": "0.0006",
"chg_20": "0.0012",
"chg_60": "0.0009"
}
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | BrokerHoldingDetailResponse |
| 400 | 请求错误 | None |
Schemas
BrokerHoldingDetailResponse
| Name | Type | Required | Description |
|---|---|---|---|
| updated_at | string | false | 最后更新日期 |
| list | object[] | true | 经纪商持仓明细,见 BrokerHoldingItem |
BrokerHoldingItem
| Name | Type | Required | Description |
|---|---|---|---|
| parti_number | string | true | 经纪商参与者编号 |
| name | string | false | 经纪商名称 |
| strong | boolean | false | 是否为主要持仓者 |
| shares | object | false | 持股数量 |
| shares.value | string | false | 当前持股数 |
| shares.chg_1 | string | false | 1 日变动 |
| shares.chg_5 | string | false | 5 日变动 |
| shares.chg_20 | string | false | 20 日变动 |
| shares.chg_60 | string | false | 60 日变动 |
| ratio | object | false | 持仓比率 |
| ratio.value | string | false | 当前比率 |
| ratio.chg_1 | string | false | 1 日比率变动 |
| ratio.chg_5 | string | false | 5 日比率变动 |
| ratio.chg_20 | string | false | 20 日比率变动 |
| ratio.chg_60 | string | false | 60 日比率变动 |

