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