Index Related Plates
GET/api/v1.0/quote/valuation/index-stock-platesGet plates related to an index; usable as filter_security candidates for index constituent valuation.
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
symbol | string | query | yes | Index symbol, e.g. HK.800000. |
Request Example
bash
curl "https://webapi.moomoo.com/api/v1.0/quote/valuation/index-stock-plates?symbol=HK.800000" | jqResponse Fields
| Field | Type | Description |
|---|---|---|
plate_list | array | Array of plates related to the index. |
plate_list[].symbol | string | Plate symbol, e.g. HK.LIST1001. |
plate_list[].name | string | Plate English name. |
plate_list[].sc_name | string | Plate Simplified Chinese name. |
plate_list[].tc_name | string | Plate Traditional Chinese name. |
Response Example
json
{
"ret_code": 0,
"ret_msg": "success",
"data": {
"plate_list": [
{ "symbol": "HK.LIST1001", "name": "Dairy Products", "sc_name": "乳制品", "tc_name": "乳製品" },
{ "symbol": "HK.LIST1002", "name": "Procurement & Supply Chain", "sc_name": "采购及供应链管理", "tc_name": "採購及供應鏈管理" }
]
}
}