Executive Background
GET/api/v1.0/quote/{symbol}/company/executive-backgroundGet 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
| Name | Type | In | Required | Description |
|---|---|---|---|---|
symbol | string | path | yes | Symbol code, e.g. HK.00700. |
leader_name | string | query | yes | Executive 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=马化腾" | jqResponse Fields
| Field | Type | Description |
|---|---|---|
brief_background | string | Executive background brief (long text). |
Supported Markets
- Supported markets: HK / US (other markets have no data for this API).
- Categories: Equities.
Error Codes
| ret_code | error.code | Trigger Condition | Suggested Action |
|---|---|---|---|
| -3 | invalid_parameter | Missing leader_name parameter | Complete the request parameters |
| -7 | invalid_symbol | Symbol not found in securities database | Use the search API to verify the symbol |
| -10 | no_data | leader_name mismatch or no background data | First call Company Executives API to get the exact leader_name |
| -4 / -6 | internal_error | Gateway request construction or response mapping failure | Retry; 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. ..."
}
}