大股東排行
獲取上市公司前 20 大股東(機構、個人、內部人)的持股數據,支持多報告期對比。object_id 可傳入 shareholder_detail 查看詳情。
SDK Links
Python | longport.openapi.FundamentalContext.shareholder_top |
Rust | longport::fundamental::FundamentalContext#shareholder_top |
Go | FundamentalContext.ShareholderTop |
Node.js | FundamentalContext#shareholderTop |
Parameters
SDK 方法參數。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 證券代碼,例如 AAPL.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"info": [
{
"period": "Latest",
"share_holders": [
{
"object_id": "148057",
"name": "The Vanguard Group, Inc.",
"title": "",
"shares_held": "1426283914.00",
"percent_shares_held": "9.71%",
"percent_shares_changed": "0.01%",
"shares_changed": "0.00",
"period": "Latest",
"filing_date": "2025/12/31"
},
{
"object_id": "452583",
"name": "BlackRock, Inc.",
"title": "",
"shares_held": "1138572603.00",
"percent_shares_held": "7.75%",
"percent_shares_changed": "-0.06%",
"shares_changed": "-10565359.00",
"period": "Latest",
"filing_date": "2026/03/31"
}
]
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | ShareholderTopResponse |
| 400 | 請求錯誤 | None |
Schemas
ShareholderTopResponse
| Name | Type | Required | Description |
|---|---|---|---|
| info | object[] | false | 各報告期的股東數據 |
| ∟ period | string | false | 報告期標籤(如 Latest) |
| ∟ share_holders | object[] | false | 股東列表(最多 20 條) |
| ∟ ∟ object_id | string | false | 股東唯一 ID,可傳入 shareholder_detail |
| ∟ ∟ name | string | false | 股東名稱 |
| ∟ ∟ title | string | false | 股東類型(機構 / 個人 / 內部人) |
| ∟ ∟ shares_held | string | false | 持股數量 |
| ∟ ∟ percent_shares_held | string | false | 持股比例,含 % 符號(如 9.71%) |
| ∟ ∟ percent_shares_changed | string | false | 持股比例變動,含 % 符號 |
| ∟ ∟ shares_changed | string | false | 持股變動數量(正增負減) |
| ∟ ∟ period | string | false | 該條目的報告期標籤 |
| ∟ ∟ filing_date | string | false | 申報日期 |