Skip to content

Company Executives

GET /api/v1.0/quote/{symbol}/company/executives

Get the list of company executives (directors / management) and their basic appointment information: name, position, gender, age, appointment start date, highest education, shares held, annual salary.

Parameters

NameTypeInRequiredDescription
symbolstringpathyesSymbol code, e.g. HK.00700.

Request Example

bash
curl "https://webapi.moomoo.com/api/v1.0/quote/HK.00700/company/executives" | jq

Response Fields

FieldTypeDescription
leader_namestringExecutive name (HK mostly Chinese; US may include title prefix).
display_leader_namestringDisplay name for client UI.
position_namestringPosition title (English).
leader_genderstringGender: male / female.
leader_agestringAge.
highest_educationstringHighest education level (English).
begin_datenumberAppointment start date (millisecond timestamp).
begin_date_strstringAppointment start date (yyyy-MM-dd).
issue_datenumberInformation publication date (millisecond timestamp).
issue_date_strstringInformation publication date (yyyy-MM-dd).
sharesstringNumber of shares held.
annual_salarystringAnnual salary amount.
annual_salary_currencystringAnnual salary currency (ISO 4217).

Supported Markets

  • Supported markets: HK / US / SH / SZ / BJ / CA / AU / JP / SG.
  • Categories: Equities, funds. Indices, forex etc. return no_data.

Error Codes

ret_codeerror.codeTrigger ConditionSuggested Action
-3invalid_parameterSymbol missing or invalid formatCheck the symbol format
-7invalid_symbolSymbol does not exist in securities databaseVerify the symbol
-10no_dataValid symbol but no executive dataTreat as no executive list available for this symbol

Response Example

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"
      }
    ]
  }
}