get_cni_index_detail
Retrieve constituent stock details for specific Chinese stock market indices by providing index code and date to analyze index composition and holdings.
Instructions
获取指定指数的成分股样本详情
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | 指数代码 (例如: '399001') | |
| date | Yes | 日期,格式为 YYYYMM (例如: '202404') | |
| output_format | No | 输出数据格式: json, csv, xml, excel, markdown, html。默认: markdown | markdown |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "日期,格式为 YYYYMM (例如: '202404')",
"type": "string"
},
"output_format": {
"default": "markdown",
"description": "输出数据格式: json, csv, xml, excel, markdown, html。默认: markdown",
"enum": [
"json",
"csv",
"xml",
"excel",
"markdown",
"html"
],
"type": "string"
},
"symbol": {
"description": "指数代码 (例如: '399001')",
"type": "string"
}
},
"required": [
"symbol",
"date"
],
"type": "object"
}