get_stock_a_code_name
Retrieve A-share stock codes and names from Chinese stock markets (Shanghai, Shenzhen, Beijing) with flexible output formats including JSON, CSV, and XML.
Instructions
获取沪深京 A 股股票代码和股票简称数据
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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"
}
},
"type": "object"
}