Skip to content

Index Related Plates

GET /api/v1.0/quote/valuation/index-stock-plates

Get plates related to an index; usable as filter_security candidates for index constituent valuation.

Parameters

NameTypeInRequiredDescription
symbolstringqueryyesIndex symbol, e.g. HK.800000.

Request Example

bash
curl "https://webapi.moomoo.com/api/v1.0/quote/valuation/index-stock-plates?symbol=HK.800000" | jq

Response Fields

FieldTypeDescription
plate_listarrayArray of plates related to the index.
plate_list[].symbolstringPlate symbol, e.g. HK.LIST1001.
plate_list[].namestringPlate English name.
plate_list[].sc_namestringPlate Simplified Chinese name.
plate_list[].tc_namestringPlate 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": "採購及供應鏈管理" }
    ]
  }
}