公司高管
GET/v1/quote/{symbol}/f10/company-executives獲取公司高管(董事 / 管理層)列表及任職基本資訊:姓名、職位、性別、年齡、任職起始日、最高學歷、持股數、年薪。
請求參數
| 參數 | 類型 | 位置 | 必填 | 說明 |
|---|---|---|---|---|
symbol | string | 路徑 | 是 | 標的代碼,如 HK.00700。 |
請求示例
bash
curl "$ip/v1/quote/HK.00700/f10/company-executives" | jq響應字段
| 字段 | 類型 | 說明 |
|---|---|---|
leader_name | string | 高管姓名(HK 多為中文,US 含稱謂前綴)。 |
display_leader_name | string | 客戶端展示名。 |
position_name | string | 職位名稱(英文)。 |
leader_gender | string | 性別:male / female。 |
leader_age | string | 年齡。 |
highest_education | string | 最高學歷(英文)。 |
begin_date | number | 任職起始日(毫秒時間戳)。 |
begin_date_str | string | 任職起始日(yyyy-MM-dd)。 |
issue_date | number | 資訊發佈日(毫秒時間戳)。 |
issue_date_str | string | 資訊發佈日(yyyy-MM-dd)。 |
shares | string | 持股數量(股)。 |
annual_salary | string | 年薪數值。 |
annual_salary_currency | string | 年薪貨幣(ISO 4217)。 |
限制範圍
- 支持市場:HK / US / SH / SZ / BJ / CA / AU / JP / SG。
- 支持品類:正股、基金。指數、外匯等返回 no_data。
錯誤碼
| ret_code | error.code | 觸發條件 | 處理建議 |
|---|---|---|---|
| -3 | invalid_parameter | symbol 缺失或格式非法 | 檢查標的代碼格式 |
| -7 | invalid_symbol | 標的代碼在證券庫中不存在 | 核對標的代碼 |
| -10 | no_data | 標的合法但無高管數據 | 視為該標的暫無高管列表 |
響應示例
json
{
"ret_code": 0,
"ret_msg": "success",
"data": {
"executives": [
{
"leader_name": "马化腾",
"display_leader_name": "huateng ma",
"position_name": "Chairman of the Board, Chief Executive Officer",
"leader_gender": "male",
"leader_age": "54",
"highest_education": "Bachelor",
"begin_date": 945964800000,
"begin_date_str": "1999-12-24",
"issue_date": 1779161536000,
"issue_date_str": "2026-05-19",
"shares": "804859700",
"annual_salary_currency": "CNY"
}
]
}
}