Skip to content

指数所属板块

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

获取指数关联的板块列表,可作为指数成分股估值接口的 filter_security 候选。

请求参数

参数类型位置必填说明
symbolstring查询指数代码,如 HK.800000

请求示例

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

响应字段

字段类型说明
plate_listarray该指数关联的板块数组。
plate_list[].symbolstring板块代码,如 HK.LIST1001
plate_list[].namestring板块英文名。
plate_list[].sc_namestring板块简体中文名。
plate_list[].tc_namestring板块繁体中文名。

响应示例

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": "採購及供應鏈管理" }
    ]
  }
}