Broker Holding Detail
Get full broker holding detail list for an HK-listed security (all brokers and their positions).
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | HK security symbol, e.g. 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 | Success | BrokerHoldingDetailResponse |
| 400 | Bad request | None |
Schemas
BrokerHoldingDetailResponse
| Name | Type | Required | Description |
|---|---|---|---|
| updated_at | string | false | Last update date |
| list | object[] | true | Broker holding detail records, see BrokerHoldingItem |
BrokerHoldingItem
| Name | Type | Required | Description |
|---|---|---|---|
| parti_number | string | true | Broker participant number |
| name | string | false | Broker name |
| strong | boolean | false | Whether marked as strong holder |
| shares | object | false | Holding share counts |
| shares.value | string | false | Current shares held |
| shares.chg_1 | string | false | 1-day change |
| shares.chg_5 | string | false | 5-day change |
| shares.chg_20 | string | false | 20-day change |
| shares.chg_60 | string | false | 60-day change |
| ratio | object | false | Holding ratio |
| ratio.value | string | false | Current ratio |
| ratio.chg_1 | string | false | 1-day ratio change |
| ratio.chg_5 | string | false | 5-day ratio change |
| ratio.chg_20 | string | false | 20-day ratio change |
| ratio.chg_60 | string | false | 60-day ratio change |

