指數所屬板塊
GET/api/v1.0/quote/valuation/index-stock-plates獲取指數關聯的板塊列表,可作為指數成分股估值介面的 filter_security 候選。
請求參數
| 参数 | 类型 | 位置 | 必填 | 说明 |
|---|---|---|---|---|
symbol | string | 查詢 | 是 | 指數代碼,如 HK.800000。 |
請求示例
bash
curl "https://webapi.moomoo.com/api/v1.0/quote/valuation/index-stock-plates?symbol=HK.800000" | jq響應字段
| 字段 | 类型 | 说明 |
|---|---|---|
plate_list | array | 該指數關聯的板塊數組。 |
plate_list[].symbol | string | 板塊代碼,如 HK.LIST1001。 |
plate_list[].name | string | 板塊英文名。 |
plate_list[].sc_name | string | 板塊簡體中文名。 |
plate_list[].tc_name | string | 板塊繁體中文名。 |
響應示例
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": "採購及供應鏈管理" }
]
}
}