大股东排行
获取上市公司前 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 | 申报日期 |