Executives
Get the list of key executives (CEO, CFO, etc.) for 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": {
"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 | Success | ExecutiveResponse |
| 400 | Bad request | None |
Schemas
ExecutiveResponse
| Name | Type | Required | Description |
|---|---|---|---|
| professional_list | object[] | true | List of executive groups, see ExecutiveGroup |
ExecutiveGroup
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | true | Security symbol |
| forward_url | string | false | Company executives page URL |
| total | integer | false | Total number of executives |
| professionals | object[] | true | List of executives, see Executive |
Executive
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | false | Executive ID |
| name | string | true | Display name |
| name_en | string | false | English name |
| name_zhcn | string | false | Chinese name |
| title | string | false | Job title |
| biography | string | false | Biography |
| photo | string | false | Photo URL |
| wiki_url | string | false | Wikipedia URL |