fund.stock_search
Search for stock information using stock codes, names, or pinyin abbreviations to retrieve relevant financial data from the East Money API.
Instructions
搜索股票信息,基于东方财富API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | 返回结果数量,默认10,最大50 | |
input | Yes | 搜索关键字,如股票代码、股票名称或拼音简称 |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"description": "返回结果数量,默认10,最大50",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"input": {
"description": "搜索关键字,如股票代码、股票名称或拼音简称",
"minLength": 1,
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}