指数所属板块
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": "採購及供應鏈管理" }
]
}
}