Owner Plate
GET/api/v1.0/quote/{symbol}/owner-plateGet the industry / concept sectors (plates) that a stock belongs to.
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
symbol | string | path | yes | Symbol code, e.g. HK.00700. |
Request Example
bash
curl 'https://webapi.moomoo.com/api/v1.0/quote/HK.00700/owner-plate' | jqResponse 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.
| Field | Type | Description |
|---|---|---|
name | string | English name of the queried symbol (not the sector name), e.g. FUTU / TENCENT. |
sc_name | string | Simplified Chinese name of the queried symbol, e.g. 富途控股 / 腾讯控股. |
tc_name | string | Traditional Chinese name of the queried symbol, e.g. 富途控股 / 騰訊控股. |
plate_code | string | Sector code (with market prefix, can be used as a stock subscription code), e.g. HK.LIST1284 / US.LIST2517 |
plate_name | string | Sector English name, e.g. Popular Chinese Concept Stocks. |
plate_sc_name | string | Sector Simplified Chinese name, e.g. 热门中概股 / 资本市场. |
plate_tc_name | string | Sector Traditional Chinese name, e.g. 熱門中概股 / 資本市場. |
plate_type | string | Sector 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
sectorsarray. - Single symbol query; for batch queries, call multiple times by symbol.
Error Codes
| ret_code | error.code | Trigger Condition | Recommended Action |
|---|---|---|---|
| -3 | invalid_parameter | symbol missing or format invalid (must be MARKET.CODE, exceeds 32 chars or missing .) | Check path parameter symbol, e.g. HK.00700 |
| -7 | invalid_symbol | symbol format is valid but backend cannot find the corresponding security | Use the search API to confirm symbol validity |
| -4 | internal_error | Gateway backend call / response mapping failed | Retry 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" }
]
}
}