Skip to content

Executive Background

GET /api/v1.0/quote/{symbol}/company/executive-background

Get detailed background information for a specific executive. You must first obtain the leader_name from the Company Executives API, then pass it to this API to query a single executive's long-text background profile.

Parameters

NameTypeInRequiredDescription
symbolstringpathyesSymbol code, e.g. HK.00700.
leader_namestringqueryyesExecutive name, must exactly match the leader_name field returned by the Company Executives API.

Request Example

bash
curl -G "https://webapi.moomoo.com/api/v1.0/quote/HK.00700/company/executive-background" \
  --data-urlencode "leader_name=马化腾" | jq

Response Fields

FieldTypeDescription
brief_backgroundstringExecutive background brief (long text).

Supported Markets

  • Supported markets: HK / US (other markets have no data for this API).
  • Categories: Equities.

Error Codes

ret_codeerror.codeTrigger ConditionSuggested Action
-3invalid_parameterMissing leader_name parameterComplete the request parameters
-7invalid_symbolSymbol not found in securities databaseUse the search API to verify the symbol
-10no_dataleader_name mismatch or no background dataFirst call Company Executives API to get the exact leader_name
-4 / -6internal_errorGateway request construction or response mapping failureRetry; contact support if persistent

Response Example

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "brief_background": "Ma Huateng, Executive Director, Chairman of the Board, and Chief Executive Officer of the Company. Mr. Ma is fully responsible for the Group's strategic planning, positioning, and management. ..."
  }
}