tushare-api
Tushare Pro 金融数据 API 查询助手。用于帮助用户查询中国股票、基金、期货、债券等金融数据。当用户需要获取股票行情、财务数据、基础信息、宏观经济数据时使用此 skill。
install
source · Clone the upstream repo
git clone https://github.com/DayDreammy/tushare-openclaw-skill
Claude Code · Install into ~/.claude/skills/
git clone --depth=1 https://github.com/DayDreammy/tushare-openclaw-skill ~/.claude/skills/daydreammy-tushare-openclaw-skill-tushare-api
OpenClaw · Install into ~/.openclaw/skills/
git clone --depth=1 https://github.com/DayDreammy/tushare-openclaw-skill ~/.openclaw/skills/daydreammy-tushare-openclaw-skill-tushare-api
manifest:
SKILL.mdsource content
Tushare API Skill
简介
Tushare Pro 是中国领先的金融数据平台,提供股票、基金、期货、债券、外汇、数字货币等全品类金融大数据。
官网: https://tushare.pro API 文档: https://tushare.pro/document/2
股票代码规范
所有股票代码都需要带后缀:
| 交易所 | 后缀 | 示例 |
|---|---|---|
| 上海证券交易所 | .SH | 600000.SH |
| 深圳证券交易所 | .SZ | 000001.SZ |
| 北京证券交易所 | .BJ | 835305.BJ |
| 香港证券交易所 | .HK | 00001.HK |
常用 API 接口
基础数据
- 股票基础信息stock_basic
- 交易日历trade_cal
- 上市公司基本信息stock_company
- IPO 新股列表new_share
行情数据
- 日线行情daily
- 周线行情weekly
- 月线行情monthly
- 复权因子adj_factor
- 每日指标(PE/PB/市值等)daily_basic
财务数据
- 利润表income
- 资产负债表balance_sheet
- 现金流量表cashflow
- 业绩预告forecast
- 业绩快报express
- 分红送股dividend
- 财务指标fina_indicator
市场数据
- 个股资金流向moneyflow
- 每日涨跌停股票limit_list
- 龙虎榜数据top_list
- 大宗交易block_trade
使用方法
Python SDK
import tushare as ts # 设置 token(需要用户自行申请) pro = ts.pro_api('your_token_here') # 获取股票列表 df = pro.stock_basic(exchange='', list_status='L', fields='ts_code,symbol,name,area,industry,list_date') # 获取日线行情 df = pro.daily(ts_code='000001.SZ', start_date='20240101', end_date='20240201') # 获取财务数据 df = pro.income(ts_code='600000.SH', start_date='20230101', end_date='20231231')
HTTP API
curl -X POST https://api.tushare.pro \ -H "Content-Type: application/json" \ -d '{ "api_name": "daily", "token": "your_token", "params": {"ts_code": "000001.SZ", "start_date": "20240101"}, "fields": "ts_code,trade_date,open,high,low,close,vol" }'
积分系统
- 注册赠送初始积分
- 通过签到、分享、贡献数据等方式获取积分
- 不同 API 调用消耗不同积分
- 积分与频次对应表: https://tushare.pro/document/1?doc_id=290
详细文档
更多接口详情见 references/api-reference.md
注意事项
- 需要申请 token 才能使用 API
- 注意积分消耗,高频接口消耗更多积分
- 数据有更新延迟,日线数据通常在收盘后 1-2 小时更新
- 免费用户有调用频次限制