Skip to content

Operational Efficiency

GET /api/v1.0/quote/{symbol}/company/operational-efficiency

Get historical operational efficiency metrics for a company (employee count, revenue per capita / operating profit per capita / net profit per capita and their respective YoY), returned by financial reporting period.

Parameters

NameTypeInRequiredDescription
symbolstringpathyesSymbol code, e.g. HK.00700.
limitintquerynoNumber of records. Default 10, max 100.
financial_typeintquerynoDefault 7. Options: 7 (annual report) / 102 (all cumulative quarterly reports). See Naming Dictionary.
currency_codestringquerynoCurrency code (ISO 4217), e.g. CNY. Defaults to the currency of the latest report.
next_keystringquerynoPagination cursor; leave empty for the first page.

Request Example

bash
curl "https://webapi.moomoo.com/api/v1.0/quote/HK.00700/company/operational-efficiency?limit=1" | jq

Response Fields

data.item_list elements:

FieldTypeDescription
fiscal_yearintFiscal year.
financial_typeintFinancial period type.
period_textstringFinancial period text, e.g. 2025/FY.
end_dateintPeriod end date (millisecond timestamp).
end_date_strstringPeriod end date (yyyy-MM-dd).
employee_numintNumber of employees.
employee_num_yoydoubleEmployee count YoY growth rate (%).
income_per_capitadoubleRevenue per capita (report currency).
income_per_capita_yoydoubleRevenue per capita YoY growth rate (%).
profit_per_capitadoubleOperating profit per capita.
profit_per_capita_yoydoubleOperating profit per capita YoY (%).
net_profit_per_capitadoubleNet profit per capita.
net_profit_per_capita_yoydoubleNet profit per capita YoY (%).

Outer fields:

FieldTypeDescription
currency_codestringCurrency unit for metrics (ISO 4217).

Supported Markets

  • Supported markets: HK / US / SH / SZ / BJ / SG / JP / AU / CA.
  • Supported categories: Company-type securities with public financial reports (common stocks and equivalent categories).
  • Non-company categories return unsupported (-8); companies without operational efficiency data return no_data (-10).

Error Codes

ret_codeerror.codeTrigger ConditionSuggested Action
0Success
-3invalid_parameterlimit exceeds 100 / financial_type not in {7,102} / invalid symbol formatCorrect parameters and retry
-7invalid_symbolSymbol cannot be resolved to a securityVerify code validity via search API
-8unsupportedCategory not in supported rangeOnly call for company-type stocks
-10no_dataSymbol valid but no operational efficiency dataTreat as no data, no need to retry

Response Example

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "currency_code": "CNY",
    "item_list": [
      {
        "fiscal_year": 2025,
        "financial_type": 7,
        "period_text": "2025/FY",
        "end_date": 1767110400000,
        "end_date_str": "2025-12-31",
        "employee_num": 115849,
        "employee_num_yoy": 4.7857,
        "income_per_capita": 6489188.5126,
        "income_per_capita_yoy": 8.6594,
        "profit_per_capita": 2085145.3184,
        "profit_per_capita_yoy": 10.7787,
        "net_profit_per_capita": 1983625.2362,
        "net_profit_per_capita_yoy": 11.6246
      }
    ]
  },
  "pagination": { "has_more": true, "next_key": "1767110400" }
}