Shareholders
Get the top institutional and individual shareholders of a company.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol, e.g. 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 | Success | ShareholderResponse |
| 400 | Bad request | None |
Schemas
ShareholderResponse
| Name | Type | Required | Description |
|---|---|---|---|
| shareholder_list | object[] | true | List of shareholders |
| ∟ shareholder_name | string | true | Shareholder name |
| ∟ percent_of_shares | string | true | Percentage of shares held |
| ∟ institution_type | string | false | Institution type |
| ∟ report_date | string | false | Report date |
| ∟ shareholder_id | string | false | Shareholder ID |
| ∟ shares_changed | string | false | Change in shares held |
| ∟ stocks | object[] | false | Associated stocks |
| forward_url | string | false | Link to full shareholder page |
| total | integer | true | Total number of shareholders |