主要股东
获取公司主要机构股东和个人股东信息。
SDK Links
Parameters
SDK 方法参数。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 证券代码,例如 AAPL.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"forward_url": "",
"total": 33,
"shareholder_list": [
{
"shareholder_name": "Timothy D. Cook",
"percent_of_shares": "2.84",
"institution_type": "",
"report_date": "2026-04-21",
"shareholder_id": "0",
"shares_changed": "0",
"stocks": []
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | ShareholderResponse |
| 400 | 请求错误 | None |
Schemas
ShareholderResponse
| Name | Type | Required | Description |
|---|---|---|---|
| shareholder_list | object[] | 是 | 股东列表, |
| ∟ shareholder_name | string | 是 | 股东名称 |
| ∟ percent_of_shares | string | 是 | 持股比例 |
| ∟ institution_type | string | 否 | 机构类型 |
| ∟ report_date | string | 否 | 报告日期 |
| ∟ shareholder_id | string | 否 | 股东 ID |
| ∟ shares_changed | string | 否 | 持股变动 |
| ∟ stocks | object[] | 否 | 关联标的 |
| forward_url | string | 否 | 完整股东页面链接 |
| total | integer | 是 | 股东总数 |