高管團隊
獲取公司關鍵高管列表(CEO、CFO 等)。
SDK Links
Python | longport.openapi.FundamentalContext.executives |
Rust | longport::fundamental::FundamentalContext#executives |
Go | FundamentalContext.Executives |
Node.js | FundamentalContext#executives |
Parameters
SDK 方法參數。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 證券代碼,例如 AAPL.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"professional_list": [
{
"symbol": "AAPL.US",
"forward_url": "https://example.com/aapl/executives",
"total": 10,
"professionals": [
{
"id": "12345",
"name": "Timothy D. Cook",
"name_en": "Timothy D. Cook",
"name_zhcn": "蒂姆·庫克",
"title": "Chief Executive Officer",
"biography": "Tim Cook is the CEO of Apple Inc.",
"photo": "https://cdn.example.com/timcook.jpg",
"wiki_url": "https://en.wikipedia.org/wiki/Tim_Cook"
}
]
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | ExecutiveResponse |
| 400 | 請求錯誤 | None |
Schemas
ExecutiveResponse
| Name | Type | Required | Description |
|---|---|---|---|
| professional_list | object[] | 是 | 高管分組列表,見 ExecutiveGroup |
ExecutiveGroup
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 證券代碼 |
| forward_url | string | 否 | 公司高管頁面連結 |
| total | integer | 否 | 高管總數 |
| professionals | object[] | 是 | 高管列表,見 Executive |
Executive
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | 否 | 高管 ID |
| name | string | 是 | 顯示名稱 |
| name_en | string | 否 | 英文名稱 |
| name_zhcn | string | 否 | 中文名稱 |
| title | string | 否 | 職位 |
| biography | string | 否 | 簡歷 |
| photo | string | 否 | 照片連結 |
| wiki_url | string | 否 | 維基百科連結 |