Skip to content

Plate List

GET /api/v1.0/quote/plate-list

Get all plates (sectors) under a specified market and plate class.

Request Parameters

ParameterTypePositionRequiredDescription
marketstringqueryyesMarket prefix. See Naming Dictionary.
plate_classstringqueryyesPlate class: ALL / INDUSTRY / REGION / CONCEPT / OTHER. See Naming Dictionary.

Request Example

bash
curl 'https://webapi.moomoo.com/api/v1.0/quote/plate-list?market=HK&plate_class=INDUSTRY' | jq

Response Fields

Returns data.plate_list[], each element represents a plate:

FieldTypeDescription
codestringPlate code (with market prefix), e.g. HK.LIST23618.
plate_idstringPlate ID (without market prefix), e.g. LIST23618.
plate_namestringPlate English name.
sc_namestringPlate Simplified Chinese name.
tc_namestringPlate Traditional Chinese name.

Supported Markets

  • Markets: See Naming Dictionary (10 markets).
  • Plate class: REGION is only supported for SH / SZ; other markets return unsupported.
  • When backend has no data, an empty plate_list is returned.

Error Codes

ret_codeerror.codeTrigger ConditionHandling
0--Success--
-3invalid_parameterMissing market or plate_class; value not in enum (case-sensitive)Correct parameters and retry
-8unsupportedplate_class=REGION but market is not SH / SZUse SH / SZ; other markets do not have region plates
-5internal_errorBackend call failed (network / timeout / RPC error)Retry

Response Example

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "plate_list": [
      { "code": "HK.LIST23618", "plate_id": "LIST23618", "plate_name": "光学媒体" },
      { "code": "HK.LIST1062", "plate_id": "LIST1062", "plate_name": "个人护理" }
    ]
  }
}