高管团队
获取公司关键高管列表(CEO、CFO 等)。
SDK Links
Parameters
SDK 方法参数。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 证券代码,例如 AAPL.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"professional_list": [
{
"forward_url": "https://longbridge.com/wiki/stocks/ST.US.AAPL#company-manager",
"professionals": [
{
"biography": "Tim Cook is the CEO of Apple Inc.",
"id": "12345",
"name": "Timothy D. Cook",
"name_en": "Timothy D. Cook",
"name_zhcn": "蒂姆·库克",
"photo": "https://cdn.example.com/timcook.jpg",
"title": "Chief Executive Officer",
"wiki_url": "https://en.wikipedia.org/wiki/Tim_Cook"
}
],
"symbol": "AAPL.US",
"total": 9
}
]
}
}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 | 否 | 维基百科链接 |