跳轉到內容

高管團隊

獲取公司關鍵高管列表(CEO、CFO 等)。

Parameters

SDK 方法參數。

NameTypeRequiredDescription
symbolstring證券代碼,例如 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

StatusDescriptionSchema
200成功ExecutiveResponse
400請求錯誤None

Schemas

ExecutiveResponse

NameTypeRequiredDescription
professional_listobject[]高管分組列表,見 ExecutiveGroup

ExecutiveGroup

NameTypeRequiredDescription
symbolstring證券代碼
forward_urlstring公司高管頁面連結
totalinteger高管總數
professionalsobject[]高管列表,見 Executive

Executive

NameTypeRequiredDescription
idstring高管 ID
namestring顯示名稱
name_enstring英文名稱
name_zhcnstring中文名稱
titlestring職位
biographystring簡歷
photostring照片連結
wiki_urlstring維基百科連結