get_stock_circulate_stock_holder
Retrieve circulating shareholder data for Chinese stocks to analyze ownership distribution and identify major investors in publicly traded companies.
Instructions
获取指定股票的流通股东情况
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | 股票代码 (例如: '000001') | |
| output_format | No | 输出数据格式: json, csv, xml, excel, markdown, html。默认: markdown | markdown |
Input Schema (JSON Schema)
{
"properties": {
"output_format": {
"default": "markdown",
"description": "输出数据格式: json, csv, xml, excel, markdown, html。默认: markdown",
"enum": [
"json",
"csv",
"xml",
"excel",
"markdown",
"html"
],
"type": "string"
},
"symbol": {
"description": "股票代码 (例如: '000001')",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}