Plate List
GET/api/v1.0/quote/plate-listGet all plates (sectors) under a specified market and plate class.
Request Parameters
| Parameter | Type | Position | Required | Description |
|---|---|---|---|---|
market | string | query | yes | Market prefix. See Naming Dictionary. |
plate_class | string | query | yes | Plate 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' | jqResponse Fields
Returns data.plate_list[], each element represents a plate:
| Field | Type | Description |
|---|---|---|
code | string | Plate code (with market prefix), e.g. HK.LIST23618. |
plate_id | string | Plate ID (without market prefix), e.g. LIST23618. |
plate_name | string | Plate English name. |
sc_name | string | Plate Simplified Chinese name. |
tc_name | string | Plate Traditional Chinese name. |
Supported Markets
- Markets: See Naming Dictionary (10 markets).
- Plate class:
REGIONis only supported for SH / SZ; other markets returnunsupported. - When backend has no data, an empty
plate_listis returned.
Error Codes
| ret_code | error.code | Trigger Condition | Handling |
|---|---|---|---|
| 0 | -- | Success | -- |
| -3 | invalid_parameter | Missing market or plate_class; value not in enum (case-sensitive) | Correct parameters and retry |
| -8 | unsupported | plate_class=REGION but market is not SH / SZ | Use SH / SZ; other markets do not have region plates |
| -5 | internal_error | Backend 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": "个人护理" }
]
}
}