Skip to content

Owner Plate

GET /api/v1.0/quote/{symbol}/owner-plate

Get the industry / concept sectors (plates) that a stock belongs to.

Parameters

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

Request Example

bash
curl 'https://webapi.moomoo.com/api/v1.0/quote/HK.00700/owner-plate' | jq

Response Fields

Returns data.sectors[], one element per sector the symbol belongs to. Symbols with no sectors (indices / some obscure foreign stocks) return an empty array.

FieldTypeDescription
namestringEnglish name of the queried symbol (not the sector name), e.g. FUTU / TENCENT.
sc_namestringSimplified Chinese name of the queried symbol, e.g. 富途控股 / 腾讯控股.
tc_namestringTraditional Chinese name of the queried symbol, e.g. 富途控股 / 騰訊控股.
plate_codestringSector code (with market prefix, can be used as a stock subscription code), e.g. HK.LIST1284 / US.LIST2517
plate_namestringSector English name, e.g. Popular Chinese Concept Stocks.
plate_sc_namestringSector Simplified Chinese name, e.g. 热门中概股 / 资本市场.
plate_tc_namestringSector Traditional Chinese name, e.g. 熱門中概股 / 資本市場.
plate_typestringSector type. See Naming Dictionary > plate_type

Supported Markets

  • Code must use a supported market prefix from the 9 markets listed below; otherwise returns invalid_symbol: HK / US / SH / SZ / SG / JP / AU / CA / MY.
  • Supported categories: Stocks / ETFs. Indices (INDEX), warrants / CBBCs / options / futures / bonds typically have no sectors and return an empty sectors array.
  • Single symbol query; for batch queries, call multiple times by symbol.

Error Codes

ret_codeerror.codeTrigger ConditionRecommended Action
-3invalid_parametersymbol missing or format invalid (must be MARKET.CODE, exceeds 32 chars or missing .)Check path parameter symbol, e.g. HK.00700
-7invalid_symbolsymbol format is valid but backend cannot find the corresponding securityUse the search API to confirm symbol validity
-4internal_errorGateway backend call / response mapping failedRetry later; report if persistent

Response Example

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "sectors": [
      { "name": "富途控股", "plate_code": "US.LIST2517", "plate_name": "热门中概股", "plate_type": "CONCEPT" },
      { "name": "富途控股", "plate_code": "US.LIST2260", "plate_name": "资本市场", "plate_type": "INDUSTRY" },
      { "name": "富途控股", "plate_code": "US.LIST2701", "plate_name": "中东ETF", "plate_type": "OTHER" }
    ]
  }
}