Broker Positions
View broker holding positions for HK-listed stocks, including top buyers/sellers and full detail.
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": {
"buy": [
{
"parti_number": "B01224",
"name": "HSBC",
"chg": "5000000",
"strong": true
}
],
"sell": [
{
"parti_number": "B01274",
"name": "Goldman Sachs HK",
"chg": "-3000000",
"strong": false
}
],
"updated_at": "2026.05.13"
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | BrokerHoldingResponse |
| 400 | Bad request | None |
Schemas
BrokerHoldingResponse
| Name | Type | Required | Description |
|---|---|---|---|
| buy | object[] | false | Top buying brokers |
| ∟ parti_number | string | true | Broker participant number |
| ∟ name | string | false | Broker name |
| ∟ chg | string | false | Position change |
| ∟ strong | boolean | false | Whether marked as strong holder |
| sell | object[] | false | Top selling brokers |
| ∟ parti_number | string | true | Broker participant number |
| ∟ name | string | false | Broker name |
| ∟ chg | string | false | Position change |
| ∟ strong | boolean | false | Whether marked as strong holder |
| updated_at | string | false | Last update timestamp |

