tushare
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseTushare
Tushare
概述
Overview
tushare是一个财经数据接口包,拥有丰富的数据内容,如股票、基金、期货、数字货币等行情数据,公司财务、基金经理等基本面数据。该技能通过代理地址转发数据请求,保留官方 Tushare Pro 的接口调用语法,并在运行前自动完成代理配置检查。
Tushare is a financial data interface package with rich data content, including market data such as stocks, funds, futures, digital currencies, and fundamental data such as corporate finance and fund managers. This skill forwards data requests through a proxy address, retains the interface calling syntax of the official Tushare Pro, and automatically completes proxy configuration checks before running.
快速上手
Quick Start
- 安装python运行环境(推荐python3.7+),并安装tushare依赖包(推荐从清华pypi镜像安装)。
bash
pip install tushare -i https://pypi.tuna.tsinghua.edu.cn/simple-
首次运行该 Skill,或当前会话里尚未确认代理配置可用时,必须先完成一次代理检查;同一会话内配置已确认可用后,后续查询无需重复检查。
-
配置读取顺序固定为:
- 当前进程环境变量
~/.config/tushare-skills/env
-
如果任一配置缺失:
- 立即中断当前任务
- 明确告知用户缺失的变量名
- 要求用户提供缺失值
- 收到后,由智能体直接写入 ,内容固定为
~/.config/tushare-skills/env,并将文件权限设置为KEY=value600 - 写入完成后再继续执行数据查询
-
如果配置值存在:
- 先把读取到的 、
TUSHARE_PROXY_TOKEN注入当前执行命令的进程环境TUSHARE_PROXY_URL - 直接执行用户要查询的实际接口
- 如果实际接口返回鉴权失败、连接失败或代理地址错误,也必须立即中断,要求用户提供正确值,并覆写
~/.config/tushare-skills/env
- 先把读取到的
-
不要要求用户手动执行初始化脚本。
-
不要在回复、日志、示例或仓库文档中暴露真实代理地址或真实 token。
-
查询Tushare接口文档,找到对应的接口。 在线数据接口文档
-
根据接口文档,使用python代码获取数据。(如股票列表接口)
下面的初始化示例假设前置配置检查已经通过。
python
import os
import tushare as ts- Install a Python runtime environment (Python 3.7+ is recommended), and install the tushare dependency package (installation from Tsinghua PyPI mirror is recommended).
bash
pip install tushare -i https://pypi.tuna.tsinghua.edu.cn/simple-
When running this Skill for the first time, or when the proxy configuration has not been confirmed available in the current session, you must complete a proxy check first; after the configuration is confirmed available in the same session, there is no need to repeat the check for subsequent queries.
-
The configuration reading order is fixed as:
- Current process environment variables
~/.config/tushare-skills/env
-
If any configuration is missing:
- Immediately interrupt the current task
- Clearly inform the user of the missing variable name
- Request the user to provide the missing value
- After receiving it, the agent directly writes it to in the fixed format of
~/.config/tushare-skills/env, and sets the file permission toKEY=value600 - Continue executing the data query after writing is completed
-
If the configuration value exists:
- First inject the obtained and
TUSHARE_PROXY_TOKENinto the process environment of the current execution commandTUSHARE_PROXY_URL - Directly execute the actual interface requested by the user
- If the actual interface returns authentication failure, connection failure or proxy address error, you must also interrupt immediately, request the user to provide the correct value, and overwrite
~/.config/tushare-skills/env
- First inject the obtained
-
Do not require users to manually execute initialization scripts.
-
Do not expose real proxy addresses or real tokens in replies, logs, examples or repository documents.
-
Query the Tushare interface documentation to find the corresponding interface. Online Data Interface Documentation
-
Use Python code to obtain data according to the interface documentation. (e.g., Stock List interface)
The following initialization example assumes that the pre-configuration check has passed.
python
import os
import tushare as ts使用代理方式初始化 pro 接口实例
Initialize the pro interface instance using proxy mode
pro = ts.pro_api("12345")
pro._DataApi__token = os.getenv("TUSHARE_PROXY_TOKEN", "")
pro._DataApi__http_url = os.getenv("TUSHARE_PROXY_URL", "")
pro = ts.pro_api("12345")
pro._DataApi__token = os.getenv("TUSHARE_PROXY_TOKEN", "")
pro._DataApi__http_url = os.getenv("TUSHARE_PROXY_URL", "")
查询数据接口(股票列表),获取上市交易的股票列表
Query the data interface (Stock List) to get the list of listed trading stocks
df = pro.stock_basic(list_status='L', fields='ts_code,symbol,name,area,industry,list_date')
print(df)
其余接口用法与官方 Tushare Pro 保持一致,只需保留相同的 `pro.xxx(...)` 调用方式即可。df = pro.stock_basic(list_status='L', fields='ts_code,symbol,name,area,industry,list_date')
print(df)
The usage of other interfaces is consistent with the official Tushare Pro, just keep the same `pro.xxx(...)` calling method.参数格式说明
Parameter Format Description
- 日期:YYYYMMDD(如 20241231)
- 股票代码:ts_code 格式(如 000001.SZ, 600000.SH)
- 返回格式:pandas DataFrame
- Date: YYYYMMDD (e.g., 20241231)
- Stock code: ts_code format (e.g., 000001.SZ, 600000.SH)
- Return format: pandas DataFrame
python脚本示例
Python Script Examples
- 股票数据获取示例
- 基金数据获取示例
- Stock Data Acquisition Example
- Fund Data Acquisition Example
数据接口列表
Data Interface List
| ID | 接口名 | 标题(详细文档) | 分类 | 描述 |
|---|---|---|---|---|
| 416 | rt_min | ETF实时分钟 | ETF专题 | 获取ETF实时分钟数据,包括1~60min |
| 400 | rt_etf_k | ETF实时日线 | ETF专题 | 获取ETF实时日k线行情,支持按ETF代码或代码通配符一次性提取全部ETF实时日k线行情 |
| 387 | stk_mins | ETF历史分钟 | ETF专题 | 获取ETF分钟数据,支持1min/5min/15min/30min/60min行情,提供Python SDK和 http Restful API两种方式 |
| 386 | etf_index | ETF基准指数 | ETF专题 | 获取ETF基准指数列表信息 |
| 385 | etf_basic | ETF基本信息 | ETF专题 | 获取国内ETF基础信息,包括了QDII。数据来源与沪深交易所公开披露信息。 |
| 199 | fund_adj | ETF复权因子 | ETF专题 | 获取基金复权因子,用于计算基金复权行情 |
| 127 | fund_daily | ETF日线行情 | ETF专题 | 获取ETF行情每日收盘后成交数据,历史超过10年 |
| 408 | etf_share_size | ETF份额规模 | ETF专题 | 获取沪深ETF每日份额和规模数据,能体现规模份额的变化,掌握ETF资金动向,同时提供每日净值和收盘价;数据指标是分批入库,建议在每日19点后提取;另外,涉及海外的ETF数据更新会晚一些属于正常情况。 |
| 322 | bc_otcqt | 柜台流通式债券报价 | 债券专题 | 柜台流通式债券报价 |
| 305 | cb_rate | 可转债票面利率 | 债券专题 | 获取可转债票面利率 |
| 272 | bond_blk_detail | 大宗交易明细 | 债券专题 | 获取沪深交易所债券大宗交易数据,可以通过数据工具调试和查看数据。 |
| 271 | bond_blk | 大宗交易 | 债券专题 | 获取沪深交易所债券大宗交易数据,可以通过数据工具调试和查看数据。 |
| 269 | cb_call | 可转债赎回信息 | 债券专题 | 获取可转债到期赎回、强制赎回等信息。数据来源于公开披露渠道,供个人和机构研究使用,请不要用于数据商业目的。 |
| 256 | repo_daily | 债券回购日行情 | 债券专题 | 债券回购日行情 |
| 323 | bc_bestotcqt | 柜台流通式债券最优报价 | 债券专题 | 柜台流通式债券最优报价 |
| 392 | cb_factor_pro | 可转债技术面因子(专业版) | 债券专题 | 获取可转债每日技术面因子数据,用于跟踪可转债当前走势情况,数据由Tushare社区自产,覆盖全历史;输出参数_bfq表示不复权,_qfq表示前复权 _hfq表示后复权,描述中说明了因子的默认传参,如需要特殊参数或者更多因子可以联系管理员评估 |
| 246 | cb_price_chg | 可转债转股价变动 | 债券专题 | 获取可转债转股价变动 |
| 233 | eco_cal | 全球财经事件 | 债券专题 | 获取全球财经日历、包括经济事件数据更新 |
| 201 | yc_cb | 国债收益率曲线 | 债券专题 | 获取中债收益率曲线,目前可获取中债国债收益率曲线即期和到期收益率曲线数据 |
| 187 | cb_daily | 可转债行情 | 债券专题 | 获取可转债行情 |
| 186 | cb_issue | 可转债发行 | 债券专题 | 获取可转债发行数据 |
| 185 | cb_basic | 可转债基础信息 | 债券专题 | 获取可转债基本信息 |
| 247 | cb_share | 可转债转股结果 | 债券专题 | 获取可转债转股结果 |
| 208 | fund_manager | 基金经理 | 公募基金 | 获取公募基金经理数据,包括基金经理简历等数据 |
| 207 | fund_share | 基金规模 | 公募基金 | 获取基金规模数据,包含上海和深圳ETF基金 |
| 121 | fund_portfolio | 基金持仓 | 公募基金 | 获取公募基金持仓数据,季度更新 |
| 120 | fund_div | 基金分红 | 公募基金 | 获取公募基金分红数据 |
| 119 | fund_nav | 基金净值 | 公募基金 | 获取公募基金净值数据 |
| 118 | fund_company | 基金管理人 | 公募基金 | 获取公募基金管理人列表 |
| 19 | fund_basic | 基金列表 | 公募基金 | 获取公募基金数据列表,包括场内和场外基金 |
| 359 | fund_factor_pro | 基金技术面因子(专业版) | 公募基金 | 获取场内基金每日技术面因子数据,用于跟踪场内基金当前走势情况,数据由Tushare社区自产,覆盖全历史;输出参数_bfq表示不复权,描述中说明了因子的默认传参,如需要特殊参数或者更多因子可以联系管理员评估 |
| 178 | fx_obasic | 外汇基础信息(海外) | 外汇数据 | 获取海外外汇基础信息,目前只有FXCM交易商的数据 |
| 179 | fx_daily | 外汇日线行情 | 外汇数据 | 获取外汇日线行情 |
| 415 | research_report | 券商研究报告 | 大模型语料专题数据 | 获取券商研究报告-个股、行业等,历史数据从20170101开始提供,增量每天两次更新 |
| 143 | news | 新闻快讯(短讯) | 大模型语料专题数据 | 获取主流新闻网站的快讯新闻数据,提供超过6年以上历史新闻。 |
| 154 | cctv_news | 新闻联播文字稿 | 大模型语料专题数据 | 获取新闻联播文字稿数据,数据开始于2017年。 |
| 176 | anns_d | 上市公司公告 | 大模型语料专题数据 | 获取全量公告数据,提供pdf下载URL |
| 367 | irm_qa_sz | 深证易互动问答 | 大模型语料专题数据 | |
| 366 | irm_qa_sh | 上证e互动问答 | 大模型语料专题数据 | |
| 195 | major_news | 新闻通讯(长篇) | 大模型语料专题数据 | 获取长篇通讯信息,覆盖主要新闻资讯网站,提供超过8年历史新闻。 |
| 406 | npr | 国家政策库 | 大模型语料专题数据 | 获取国家行政机关公开披露的各类法规、条例政策、批复、通知等文本数据。 |
| 245 | cn_ppi | 工业生产者出厂价格指数(PPI) | 宏观经济,国内宏观,价格指数 | 获取PPI工业生产者出厂价格指数数据 |
| 228 | cn_cpi | 居民消费价格指数(CPI) | 宏观经济,国内宏观,价格指数 | 获取CPI居民消费价格数据,包括全国、城市和农村的数据 |
| 149 | shibor | Shibor利率 | 宏观经济,国内宏观,利率数据 | shibor利率 |
| 151 | shibor_lpr | LPR贷款基础利率 | 宏观经济,国内宏观,利率数据 | LPR贷款基础利率 |
| 152 | libor | Libor利率 | 宏观经济,国内宏观,利率数据 | Libor拆借利率 |
| 150 | shibor_quote | Shibor报价数据 | 宏观经济,国内宏观,利率数据 | Shibor报价数据 |
| 173 | wz_index | 温州民间借贷利率 | 宏观经济,国内宏观,利率数据 | 温州民间借贷利率,即温州指数 |
| 153 | hibor | Hibor利率 | 宏观经济,国内宏观,利率数据 | Hibor利率 |
| 174 | gz_index | 广州民间借贷利率 | 宏观经济,国内宏观,利率数据 | 广州民间借贷利率 |
| 227 | cn_gdp | 国内生产总值(GDP) | 宏观经济,国内宏观,国民经济 | 获取国民经济之GDP数据 |
| 325 | cn_pmi | 采购经理指数(PMI) | 宏观经济,国内宏观,景气度 | 采购经理人指数 |
| 310 | sf_month | 社融增量(月度) | 宏观经济,国内宏观,金融,社会融资 | 获取月度社会融资数据 |
| 242 | cn_m | 货币供应量(月) | 宏观经济,国内宏观,金融,货币供应量 | 获取货币供应量之月度数据 |
| 221 | us_tbr | 短期国债利率 | 宏观经济,国际宏观,美国利率 | 获取美国短期国债利率数据 |
| 220 | us_trycr | 国债实际收益率曲线利率 | 宏观经济,国际宏观,美国利率 | 国债实际收益率曲线利率 |
| 222 | us_tltr | 国债长期利率 | 宏观经济,国际宏观,美国利率 | 国债长期利率 |
| 223 | us_trltr | 国债长期利率平均值 | 宏观经济,国际宏观,美国利率 | 国债实际长期利率平均值 |
| 219 | us_tycr | 国债收益率曲线利率 | 宏观经济,国际宏观,美国利率 | 获取美国每日国债收益率曲线利率 |
| 420 | rt_idx_min | 指数实时分钟 | 指数专题 | 获取交易所指数实时分钟数据,包括1~60min |
| 419 | idx_mins | 指数历史分钟 | 指数专题 | 获取交易所指数分钟数据,支持1min/5min/15min/30min/60min行情,提供Python SDK和 http Restful API两种方式 |
| 215 | daily_info | 沪深市场每日交易统计 | 指数专题 | 获取交易所股票交易统计,包括各板块明细 |
| 211 | index_global | 国际主要指数 | 指数专题 | 获取国际主要指数日线行情 |
| 181 | index_classify | 申万行业分类 | 指数专题 | 获取申万行业分类,可以获取申万2014年版本(28个一级分类,104个二级分类,227个三级分类)和2021年本版(31个一级分类,134个二级分类,346个三级分类)列表信息 |
| 268 | sz_daily_info | 深圳市场每日交易情况 | 指数专题 | 获取深圳市场每日交易概况 |
| 128 | index_dailybasic | 大盘指数每日指标 | 指数专题 | 目前只提供上证综指,深证成指,上证50,中证500,中小板指,创业板指的每日指标数据 |
| 403 | rt_idx_k | 指数实时日线 | 指数专题 | 获取交易所指数实时日线行情,支持按代码或代码通配符一次性提取全部交易所指数实时日k线行情 |
| 96 | index_weight | 指数成分和权重 | 指数专题 | 获取各类指数成分和权重,月度数据 ,建议输入参数里开始日期和结束日分别输入当月第一天和最后一天的日期。 |
| 373 | ci_index_member | 中信行业成分 | 指数专题 | 按三级分类提取中信行业成分,可提供某个分类的所有成分,也可按股票代码提取所属分类,参数灵活 |
| 358 | idx_factor_pro | 指数技术面因子(专业版) | 指数专题 | 获取指数每日技术面因子数据,用于跟踪指数当前走势情况,数据由Tushare社区自产,覆盖全历史;输出参数_bfq表示不复权描述中说明了因子的默认传参,如需要特殊参数或者更多因子可以联系管理员评估,指数包括大盘指数 申万行业指数 中信指数 |
| 335 | index_member_all | 申万行业成分(分级) | 指数专题 | 按三级分类提取申万行业成分,可提供某个分类的所有成分,也可按股票代码提取所属分类,参数灵活 |
| 417 | rt_sw_k | 申万实时行情 | 指数专题 | 获取申万行业指数的最新截面数据 |
| 172 | index_monthly | 指数月线行情 | 指数专题 | 获取指数月线行情,每月更新一次 |
| 308 | ci_daily | 中信行业指数日行情 | 指数专题 | 获取中信行业指数日线行情 |
| 171 | index_weekly | 指数周线行情 | 指数专题 | 获取指数周线行情 |
| 327 | sw_daily | 申万行业指数日行情 | 指数专题 | 获取申万行业日线行情(默认是申万2021版行情) |
| 95 | index_daily | 指数日线行情 | 指数专题 | 获取指数每日行情,还可以通过bar接口获取。由于服务器压力,目前规则是单次调取最多取8000行记录,可以设置start和end日期补全。指数行情也可以通过通用行情接口获取数据. |
| 94 | index_basic | 指数基本信息 | 指数专题 | 获取指数基础信息。 |
| 341 | opt_mins | 期权分钟行情 | 期权数据 | 获取全市场期权合约分钟数据,支持1min/5min/15min/30min/60min行情,提供Python SDK和 http Restful API两种方式。 |
| 159 | opt_daily | 期权日线行情 | 期权数据 | 获取期权日线行情 |
| 158 | opt_basic | 期权合约信息 | 期权数据 | 获取期权合约信息 |
| 216 | fut_weekly_detail | 期货主要品种交易周报 | 期货数据 | 获取期货交易所主要品种每周交易统计信息,数据从2010年3月开始 |
| 368 | ft_limit | 期货合约涨跌停价格 | 期货数据 | 获取所有期货合约每天的涨跌停价格及最低保证金率,数据开始于2005年。 |
| 340 | rt_fut_min | 实时分钟行情 | 期货数据 | 获取全市场期货合约实时分钟数据,支持1min/5min/15min/30min/60min行情,提供Python SDK、 http Restful API和websocket三种方式,如果需要主力合约分钟,请先通过主力mapping接口获取对应的合约代码后提取分钟。 |
| 135 | fut_basic | 合约信息 | 期货数据 | 获取期货合约列表数据 |
| 137 | trade_cal | 交易日历 | 期货数据 | 获取各大期货交易所交易日历数据 |
| 138 | fut_daily | 日线行情 | 期货数据 | 期货日线行情数据 |
| 139 | fut_holding | 每日持仓排名 | 期货数据 | 获取每日成交持仓排名数据 |
| 140 | fut_wsr | 仓单日报 | 期货数据 | 获取仓单日报数据,了解各仓库/厂库的仓单变化 |
| 141 | fut_settle | 每日结算参数 | 期货数据 | 获取每日结算参数数据,包括交易和交割费率等 |
| 155 | index_daily | 南华期货指数行情 | 期货数据 | 获取南华指数每日行情,指数行情也可以通过通用行情接口获取数据. |
| 189 | fut_mapping | 期货主力与连续合约 | 期货数据 | 获取期货主力(或连续)合约与月合约映射数据 |
| 313 | ft_mins | 历史分钟行情 | 期货数据 | 获取全市场期货合约分钟数据,支持1min/5min/15min/30min/60min行情,提供Python SDK和 http Restful API两种方式,如果需要主力合约分钟,请先通过主力mapping接口获取对应的合约代码后提取分钟。 |
| 337 | fut_weekly_monthly | 期货周月线行情(每日更新) | 期货数据 | 期货周/月线行情(每日更新) |
| 391 | hk_cashflow | 港股现金流量表 | 港股数据 | 获取港股上市公司现金流量表数据 |
| 390 | hk_balancesheet | 港股资产负债表 | 港股数据 | 获取港股上市公司资产负债表 |
| 389 | hk_income | 港股利润表 | 港股数据 | 获取港股上市公司财务利润表数据 |
| 388 | hk_fina_indicator | 港股财务指标数据 | 港股数据 | 获取港股上市公司财务指标数据,为避免服务器压力,现阶段每次请求最多返回200条记录,可通过设置日期多次请求获取更多数据。 |
| 401 | hk_adjfactor | 港股复权因子 | 港股数据 | 获取港股每日复权因子数据,每天滚动刷新 |
| 339 | hk_daily_adj | 港股复权行情 | 港股数据 | 获取港股复权行情,提供股票股本、市值和成交及换手多个数据指标 |
| 383 | rt_hk_k | 港股实时日线 | 港股数据 | 获取港股实时日k线行情,支持按股票代码及股票代码通配符一次性提取全部股票实时日k线行情 |
| 191 | hk_basic | 港股基础信息 | 港股数据 | 获取港股列表信息 |
| 192 | hk_daily | 港股日线行情 | 港股数据 | 获取港股每日增量和历史行情,每日18点左右更新当日数据 |
| 304 | hk_mins | 港股分钟行情 | 港股数据 | 港股分钟数据,支持1min/5min/15min/30min/60min行情,提供Python SDK和 http Restful API两种方式 |
| 250 | hk_tradecal | 港股交易日历 | 港股数据 | 获取交易日历 |
| 285 | sge_daily | 上海黄金现货日行情 | 现货数据 | 获取上海黄金交易所现货合约日线行情 |
| 284 | sge_basic | 上海黄金基础信息 | 现货数据 | 获取上海黄金交易所现货合约基础信息 |
| 393 | us_fina_indicator | 美股财务指标数据 | 美股数据 | 获取美股上市公司财务指标数据,目前只覆盖主要美股和中概股。为避免服务器压力,现阶段每次请求最多返回200条记录,可通过设置日期多次请求获取更多数据。 |
| 402 | us_adjfactor | 美股复权因子 | 美股数据 | 获取美股每日复权因子数据,在每天美股收盘后滚动刷新 |
| 396 | us_cashflow | 美股现金流量表 | 美股数据 | 获取美股上市公司现金流量表数据(目前只覆盖主要美股和中概股) |
| 395 | us_balancesheet | 美股资产负债表 | 美股数据 | 获取美股上市公司资产负债表(目前只覆盖主要美股和中概股) |
| 394 | us_income | 美股利润表 | 美股数据 | 获取美股上市公司财务利润表数据(目前只覆盖主要美股和中概股) |
| 254 | us_daily | 美股日线行情 | 美股数据 | 获取美股行情(未复权),包括全部股票全历史行情,以及重要的市场和估值指标 |
| 253 | us_tradecal | 美股交易日历 | 美股数据 | 获取美股交易日历信息 |
| 252 | us_basic | 美股基础信息 | 美股数据 | 获取美股列表信息 |
| 338 | us_daily_adj | 美股复权行情 | 美股数据 | 获取美股复权行情,支持美股全市场股票,提供股本、市值、复权因子和成交信息等多个数据指标 |
| 326 | margin_secs | 融资融券标的(盘前) | 股票数据,两融及转融通 | 获取沪深京三大交易所融资融券标的(包括ETF),每天盘前更新 |
| 331 | slb_len | 转融资交易汇总 | 股票数据,两融及转融通 | 转融通融资汇总 |
| 332 | slb_sec | 转融券交易汇总(停) | 股票数据,两融及转融通 | 转融通转融券交易汇总 |
| 333 | slb_sec_detail | 转融券交易明细(停) | 股票数据,两融及转融通 | 转融券交易明细 |
| 59 | margin_detail | 融资融券交易明细 | 股票数据,两融及转融通 | 获取沪深两市每日融资融券明细 |
| 58 | margin | 融资融券交易汇总 | 股票数据,两融及转融通 | 获取融资融券每日交易汇总数据 |
| 334 | slb_len_mm | 做市借券交易汇总(停) | 股票数据,两融及转融通 | 做市借券交易汇总 |
| 124 | repurchase | 股票回购 | 股票数据,参考数据 | 获取上市公司回购股票数据 |
| 110 | pledge_stat | 股权质押统计数据 | 股票数据,参考数据 | 获取股票质押统计数据 |
| 160 | share_float | 限售股解禁 | 股票数据,参考数据 | 获取限售股解禁 |
| 161 | block_trade | 大宗交易 | 股票数据,参考数据 | 大宗交易 |
| 164 | stk_account | 股票开户数据(停) | 股票数据,参考数据 | 获取股票账户开户数据,统计周期为一周 |
| 165 | stk_account_old | 股票开户数据(旧) | 股票数据,参考数据 | 获取股票账户开户数据旧版格式数据,数据从2008年1月开始,到2015年5月29,新数据请通过股票开户数据获取。 |
| 166 | stk_holdernumber | 股东人数 | 股票数据,参考数据 | 获取上市公司股东户数数据,数据不定期公布 |
| 175 | stk_holdertrade | 股东增减持 | 股票数据,参考数据 | 获取上市公司增减持数据,了解重要股东近期及历史上的股份增减变化 |
| 61 | top10_holders | 前十大股东 | 股票数据,参考数据 | 获取上市公司前十大股东数据,包括持有数量和比例等信息 |
| 111 | pledge_detail | 股权质押明细数据 | 股票数据,参考数据 | 获取股票质押明细数据 |
| 62 | top10_floatholders | 前十大流通股东 | 股票数据,参考数据 | 获取上市公司前十大流通股东数据 |
| 423 | st | ST风险警示板股票 | 股票数据,基础数据 | ST风险警示板股票列表 |
| 398 | stock_hsgt | 沪深港通股票列表 | 股票数据,基础数据 | 获取沪深港通股票列表 |
| 397 | stock_st | ST股票列表 | 股票数据,基础数据 | 获取ST股票列表,可根据交易日期获取历史上每天的ST列表 |
| 375 | bse_mapping | 北交所新旧代码对照 | 股票数据,基础数据 | 获取北交所股票代码变更后新旧代码映射表数据 |
| 329 | stk_premarket | 每日股本(盘前) | 股票数据,基础数据 | 每日开盘前获取当日股票的股本情况,包括总股本和流通股本,涨跌停价格等。 |
| 123 | new_share | IPO新股上市 | 股票数据,基础数据 | 获取新股上市列表数据 |
| 194 | stk_rewards | 管理层薪酬和持股 | 股票数据,基础数据 | 获取上市公司管理层薪酬和持股 |
| 193 | stk_managers | 上市公司管理层 | 股票数据,基础数据 | 获取上市公司管理层 |
| 112 | stock_company | 上市公司基本信息 | 股票数据,基础数据 | 获取上市公司基础信息,单次提取4500条,可以根据交易所分批提取 |
| 100 | namechange | 股票曾用名 | 股票数据,基础数据 | 历史名称变更记录 |
| 26 | trade_cal | 交易日历 | 股票数据,基础数据 | 获取各大交易所交易日历数据,默认提取的是上交所 |
| 25 | stock_basic | 股票列表 | 股票数据,基础数据 | 获取基础信息数据,包括股票代码、名称、上市日期、退市日期等 |
| 262 | bak_basic | 股票历史列表 | 股票数据,基础数据 | 获取备用基础列表,数据从2016年开始 |
| 382 | dc_daily | 东财概念和行业指数行情 | 股票数据,打板专题数据 | 获取东财概念板块、行业指数板块、地域板块行情数据,历史数据开始于2020年 |
| 321 | dc_hot | 东方财富App热榜 | 股票数据,打板专题数据 | 获取东方财富App热榜数据,包括A股市场、ETF基金、港股市场、美股市场等等,每日盘中提取4次,收盘后4次,最晚22点提取一次。 |
| 298 | limit_list_d | 涨跌停和炸板数据 | 股票数据,打板专题数据 | 获取A股每日涨跌停、炸板数据情况,数据从2020年开始(不提供ST股票的统计) |
| 311 | hm_list | 市场游资最全名录 | 股票数据,打板专题数据 | 获取游资分类名录信息 |
| 347 | kpl_list | 榜单数据(开盘啦) | 股票数据,打板专题数据 | 获取开盘啦涨停、跌停、炸板等榜单数据 |
| 261 | ths_member | 同花顺行业概念成分 | 股票数据,打板专题数据 | 获取同花顺概念板块成分列表注:数据版权归属同花顺,如做商业用途,请主动联系同花顺。 |
| 260 | ths_daily | 同花顺概念和行业指数行情 | 股票数据,打板专题数据 | 获取同花顺板块指数行情。注:数据版权归属同花顺,如做商业用途,请主动联系同花顺,如需帮助请联系微信:waditu_a |
| 259 | ths_index | 同花顺行业概念板块 | 股票数据,打板专题数据 | 获取同花顺板块指数。注:数据版权归属同花顺,如做商业用途,请主动联系同花顺,如需帮助请联系微信:waditu_a |
| 107 | top_inst | 龙虎榜机构交易单 | 股票数据,打板专题数据 | 龙虎榜机构成交明细 |
| 351 | kpl_concept_cons | 题材成分(开盘啦) | 股票数据,打板专题数据 | 获取开盘啦概念题材的成分股 |
| 355 | limit_list_ths | 同花顺涨跌停榜单 | 股票数据,打板专题数据 | 获取同花顺每日涨跌停榜单数据,历史数据从20231101开始提供,增量每天16点左右更新 |
| 356 | limit_step | 涨停股票连板天梯 | 股票数据,打板专题数据 | 获取每天连板个数晋级的股票,可以分析出每天连续涨停进阶个数,判断强势热度 |
| 357 | limit_cpt_list | 涨停最强板块统计 | 股票数据,打板专题数据 | 获取每天涨停股票最多最强的概念板块,可以分析强势板块的轮动,判断资金动向 |
| 362 | dc_index | 东方财富概念板块 | 股票数据,打板专题数据 | 获取东方财富每个交易日的概念板块数据,支持按日期查询 |
| 363 | dc_member | 东方财富概念成分 | 股票数据,打板专题数据 | 获取东方财富板块每日成分数据,可以根据概念板块代码和交易日期,获取历史成分 |
| 369 | stk_auction | 开盘竞价成交(当日) | 股票数据,打板专题数据 | 获取当日个股和ETF的集合竞价成交情况,每天9点25~29分之间可以获取当日的集合竞价成交数据 |
| 376 | tdx_index | 通达信板块信息 | 股票数据,打板专题数据 | 获取通达信板块基础信息,包括概念板块、行业、风格、地域等 |
| 106 | top_list | 龙虎榜每日统计单 | 股票数据,打板专题数据 | 龙虎榜每日交易明细 |
| 377 | tdx_member | 通达信板块成分 | 股票数据,打板专题数据 | 获取通达信各板块成分股信息 |
| 378 | tdx_daily | 通达信板块行情 | 股票数据,打板专题数据 | 获取通达信各板块行情,包括成交和估值等数据 |
| 312 | hm_detail | 游资交易每日明细 | 股票数据,打板专题数据 | 获取每日游资交易明细,数据开始于2022年8。游资分类名录,请点击<a href="https://tushare.pro/document/2?doc_id=311">游资名录</a> |
| 320 | ths_hot | 同花顺App热榜数 | 股票数据,打板专题数据 | 获取同花顺App热榜数据,包括热股、概念板块、ETF、可转债、港美股等等,每日盘中提取4次,收盘后4次,最晚22点提取一次。 |
| 364 | stk_nineturn | 神奇九转指标 | 股票数据,特色数据 | 神奇九转(又称“九转序列”)是一种基于技术分析的股票趋势反转指标,其思想来源于技术分析大师汤姆·迪马克(Tom DeMark)的TD序列。该指标的核心功能是通过识别股价在上涨或下跌过程中连续9天的特定走势,来判断股价的潜在反转点,从而帮助投资者提高抄底和逃顶的成功率,日线级别配合60min的九转效果更好,数据从20230101开始。 |
| 188 | hk_hold | 沪深股通持股明细 | 股票数据,特色数据 | 获取沪深港股通持股明细,数据来源港交所。 |
| 267 | broker_recommend | 券商月度金股 | 股票数据,特色数据 | 获取券商月度金股,一般1日~3日内更新当月数据 |
| 274 | ccass_hold_detail | 中央结算系统持股明细 | 股票数据,特色数据 | 获取中央结算系统机构席位持股明细,数据覆盖全历史,根据交易所披露时间,当日数据在下一交易日早上9点前完成 |
| 275 | stk_surv | 机构调研数据 | 股票数据,特色数据 | 获取上市公司机构调研记录数据 |
| 292 | report_rc | 券商盈利预测数据 | 股票数据,特色数据 | 获取券商(卖方)每天研报的盈利预测数据,数据从2010年开始,每晚19~22点更新当日数据 |
| 293 | cyq_perf | 每日筹码及胜率 | 股票数据,特色数据 | 获取A股每日筹码平均成本和胜率情况,每天18~19点左右更新,数据从2018年开始 |
| 294 | cyq_chips | 每日筹码分布 | 股票数据,特色数据 | 获取A股每日的筹码分布情况,提供各价位占比,数据从2018年开始,每天18~19点之间更新当日数据 |
| 295 | ccass_hold | 中央结算系统持股统计 | 股票数据,特色数据 | 获取中央结算系统持股汇总数据,覆盖全部历史数据,根据交易所披露时间,当日数据在下一交易日早上9点前完成入库 |
| 353 | stk_auction_o | 股票开盘集合竞价数据 | 股票数据,特色数据 | 股票开盘9:30集合竞价数据,每天盘后更新 |
| 354 | stk_auction_c | 股票收盘集合竞价数据 | 股票数据,特色数据 | 股票收盘15:00集合竞价数据,每天盘后更新 |
| 399 | stk_ah_comparison | AH股比价 | 股票数据,特色数据 | AH股比价数据,可根据交易日期获取历史 |
| 328 | stk_factor_pro | 股票技术面因子(专业版) | 股票数据,特色数据 | 获取股票每日技术面因子数据,用于跟踪股票当前走势情况,数据由Tushare社区自产,覆盖全历史;输出参数_bfq表示不复权,_qfq表示前复权 _hfq表示后复权,描述中说明了因子的默认传参,如需要特殊参数或者更多因子可以联系管理员评估 |
| 27 | daily | 历史日线 | 股票数据,行情数据 | 获取股票行情数据,或通过通用行情接口获取数据,包含了前后复权数据 |
| 146 | pro_bar | 复权行情 | 股票数据,行情数据 | |
| 145 | monthly | 月线行情 | 股票数据,行情数据 | 获取A股月线数据 |
| 374 | rt_min | 实时分钟 | 股票数据,行情数据 | 获取全A股票实时分钟数据,包括1~60min |
| 372 | rt_k | 实时日线 | 股票数据,行情数据 | 获取实时日k线行情,支持按股票代码及股票代码通配符一次性提取全部股票实时日k线行情 |
| 370 | stk_mins | 历史分钟 | 股票数据,行情数据 | 获取A股分钟数据,支持1min/5min/15min/30min/60min行情,提供Python SDK和 http Restful API两种方式 |
| 365 | stk_week_month_adj | 周月线复权行情(每日更新) | 股票数据,行情数据 | 股票周/月线行情(复权--每日更新) |
| 336 | stk_weekly_monthly | 周月线行情(每日更新) | 股票数据,行情数据 | 股票周/月线行情(每日更新) |
| 255 | bak_daily | 备用行情 | 股票数据,行情数据 | 获取备用行情,包括特定的行情指标(数据从2017年中左右开始,早期有几天数据缺失,近期正常) |
| 144 | weekly | 周线行情 | 股票数据,行情数据 | 获取A股周线行情,本接口每周最后一个交易日更新,如需要使用每天更新的周线数据,请使用日度更新的周线行情接口。 |
| 214 | suspend_d | 每日停复牌信息 | 股票数据,行情数据 | 按日期方式获取股票每日停复牌信息 |
| 196 | ggt_daily | 港股通每日成交统计 | 股票数据,行情数据 | 获取港股通每日成交信息,数据从2014年开始 |
| 183 | stk_limit | 每日涨跌停价格 | 股票数据,行情数据 | 获取全市场(包含A/B股和基金)每日涨跌停价格,包括涨停价格,跌停价格等,每个交易日8点40左右更新当日股票涨跌停价格。 |
| 109 | pro_bar | 通用行情接口 | 股票数据,行情数据 | |
| 49 | ggt_top10 | 港股通十大成交股 | 股票数据,行情数据 | 获取港股通每日成交数据,其中包括沪市、深市详细数据,每天18~20点之间完成当日更新 |
| 48 | hsgt_top10 | 沪深股通十大成交股 | 股票数据,行情数据 | 获取沪股通、深股通每日前十大成交详细数据,每天18~20点之间完成当日更新 |
| 32 | daily_basic | 每日指标 | 股票数据,行情数据 | 获取全部股票每日重要的基本面指标,可用于选股分析、报表展示等。单次请求最大返回6000条数据,可按日线循环提取全部历史。 |
| 28 | adj_factor | 复权因子 | 股票数据,行情数据 | 本接口由Tushare自行生产,获取股票复权因子,可提取单只股票全部历史复权因子,也可以提取单日全部股票的复权因子。 |
| 197 | ggt_monthly | 港股通每月成交统计 | 股票数据,行情数据 | 港股通每月成交信息,数据从2014年开始 |
| 33 | income | 利润表 | 股票数据,财务数据 | 获取上市公司财务利润表数据 |
| 44 | cashflow | 现金流量表 | 股票数据,财务数据 | 获取上市公司现金流量表 |
| 36 | balancesheet | 资产负债表 | 股票数据,财务数据 | 获取上市公司资产负债表 |
| 46 | express | 业绩快报 | 股票数据,财务数据 | 获取上市公司业绩快报 |
| 79 | fina_indicator | 财务指标数据 | 股票数据,财务数据 | 获取上市公司财务指标数据,为避免服务器压力,现阶段每次请求最多返回100条记录,可通过设置日期多次请求获取更多数据。 |
| 81 | fina_mainbz | 主营业务构成 | 股票数据,财务数据 | 获得上市公司主营业务构成,分地区和产品两种方式 |
| 103 | dividend | 分红送股数据 | 股票数据,财务数据 | 分红送股数据 |
| 162 | disclosure_date | 财报披露日期表 | 股票数据,财务数据 | 获取财报披露计划日期 |
| 45 | forecast | 业绩预告 | 股票数据,财务数据 | 获取业绩预告数据 |
| 80 | fina_audit | 财务审计意见 | 股票数据,财务数据 | 获取上市公司定期财务审计意见数据 |
| 47 | moneyflow_hsgt | 沪深港通资金流向 | 股票数据,资金流向数据 | 获取沪股通、深股通、港股通每日资金流向数据,每次最多返回300条记录,总量不限制。 |
| 170 | moneyflow | 个股资金流向 | 股票数据,资金流向数据 | 获取沪深A股票资金流向数据,分析大单小单成交情况,用于判别资金动向,数据开始于2010年。 |
| 343 | moneyflow_ind_ths | 行业资金流向(THS) | 股票数据,资金流向数据 | 获取同花顺行业资金流向,每日盘后更新 |
| 344 | moneyflow_ind_dc | 板块资金流向(DC) | 股票数据,资金流向数据 | 获取东方财富板块资金流向,每天盘后更新 |
| 345 | moneyflow_mkt_dc | 大盘资金流向(DC) | 股票数据,资金流向数据 | 获取东方财富大盘资金流向数据,每日盘后更新 |
| 348 | moneyflow_ths | 个股资金流向(THS) | 股票数据,资金流向数据 | 获取同花顺个股资金流向数据,每日盘后更新 |
| 349 | moneyflow_dc | 个股资金流向(DC) | 股票数据,资金流向数据 | 获取东方财富个股资金流向数据,每日盘后更新,数据开始于20230911 |
| 371 | moneyflow_cnt_ths | 板块资金流向(THS) | 股票数据,资金流向数据 | 获取同花顺概念板块每日资金流向 |
| 156 | film_record | 全国电影剧本备案数据 | 行业经济,TMT行业 | 获取全国电影剧本备案的公示数据 |
| 180 | teleplay_record | 全国电视剧备案公示数据 | 行业经济,TMT行业 | 获取2009年以来全国拍摄制作电视剧备案公示数据 |
| 87 | tmt_twincomedetail | 台湾电子产业月营收明细 | 行业经济,TMT行业 | 获取台湾TMT行业上市公司各类产品月度营收情况。 |
| 88 | tmt_twincome | 台湾电子产业月营收 | 行业经济,TMT行业 | 获取台湾TMT电子产业领域各类产品月度营收数据。 |
| 113 | bo_monthly | 电影月度票房 | 行业经济,TMT行业 | 获取电影月度票房数据 |
| 115 | bo_daily | 电影日度票房 | 行业经济,TMT行业 | 获取电影日度票房 |
| 116 | bo_cinema | 影院日度票房 | 行业经济,TMT行业 | 获取每日各影院的票房数据 |
| 114 | bo_weekly | 电影周度票房 | 行业经济,TMT行业 | 获取周度票房数据 |
| 265 | fund_sales_ratio | 各渠道公募基金销售保有规模占比 | 财富管理,基金销售行业数据 | 获取各渠道公募基金销售保有规模占比数据,年度更新 |
| 266 | fund_sales_vol | 销售机构公募基金销售保有规模 | 财富管理,基金销售行业数据 | 获取销售机构公募基金销售保有规模数据,本数据从2021年Q1开始公布,季度更新 |
| ID | Interface Name | Title (Detailed Documentation) | Category | Description |
|---|---|---|---|---|
| 416 | rt_min | Real-time Minute Data for ETF | ETF Topic | Obtain real-time minute data for ETFs, including 1~60min |
| 400 | rt_etf_k | Real-time Daily K-line for ETF | ETF Topic | Obtain real-time daily K-line market data for ETFs, supporting one-time extraction of all real-time daily K-line market data for ETFs by ETF code or code wildcard |
| 387 | stk_mins | Historical Minute Data for ETF | ETF Topic | Obtain minute data for ETFs, supporting 1min/5min/15min/30min/60min market data, providing both Python SDK and HTTP Restful API methods |
| 386 | etf_index | ETF Benchmark Index | ETF Topic | Obtain the list information of ETF benchmark indices |
| 385 | etf_basic | Basic Information of ETF | ETF Topic | Obtain basic information of domestic ETFs, including QDII. Data sources are public disclosure information from Shanghai and Shenzhen Stock Exchanges. |
| 199 | fund_adj | ETF Adjustment Factor | ETF Topic | Obtain fund adjustment factors for calculating fund adjusted market data |
| 127 | fund_daily | Daily K-line Market Data for ETF | ETF Topic | Obtain daily closing transaction data of ETF market, with a history of over 10 years |
| 408 | etf_share_size | ETF Share and Scale | ETF Topic | Obtain daily share and scale data of Shanghai and Shenzhen ETFs, which can reflect changes in scale and shares, grasp the capital movement of ETFs, and also provide daily net value and closing price; data indicators are stored in batches, it is recommended to extract after 19:00 every day; in addition, the update of ETF data involving overseas markets will be later, which is normal. |
| 322 | bc_otcqt | OTC Bond Quotations | Bond Topic | OTC bond quotations |
| 305 | cb_rate | Convertible Bond Coupon Rate | Bond Topic | Obtain coupon rates of convertible bonds |
| 272 | bond_blk_detail | Block Trading Details of Bonds | Bond Topic | Obtain block trading data of bonds from Shanghai and Shenzhen Stock Exchanges, you can debug and view data through Data Tool. |
| 271 | bond_blk | Block Trading of Bonds | Bond Topic | Obtain block trading data of bonds from Shanghai and Shenzhen Stock Exchanges, you can debug and view data through Data Tool. |
| 269 | cb_call | Convertible Bond Redemption Information | Bond Topic | Obtain information such as maturity redemption and mandatory redemption of convertible bonds. Data comes from public disclosure channels, for personal and institutional research use, please do not use it for commercial data purposes. |
| 256 | repo_daily | Daily Repurchase Market Data of Bonds | Bond Topic | Daily repurchase market data of bonds |
| 323 | bc_bestotcqt | Best OTC Bond Quotations | Bond Topic | Best OTC bond quotations |
| 392 | cb_factor_pro | Technical Factors of Convertible Bonds (Professional Version) | Bond Topic | Obtain daily technical factor data of convertible bonds for tracking the current trend of convertible bonds. Data is produced by the Tushare community, covering the entire history; the output parameter _bfq indicates no adjustment, _qfq indicates forward adjustment, _hfq indicates backward adjustment. The default parameters of factors are explained in the description. If you need special parameters or more factors, you can contact the administrator for evaluation. |
| 246 | cb_price_chg | Convertible Bond Conversion Price Change | Bond Topic | Obtain conversion price changes of convertible bonds |
| 233 | eco_cal | Global Financial Events | Bond Topic | Obtain global financial calendar, including economic event data updates |
| 201 | yc_cb | Treasury Yield Curve | Bond Topic | Obtain China Bond yield curves, currently available for spot and maturity yield curves of China Bond treasury bonds |
| 187 | cb_daily | Market Data of Convertible Bonds | Bond Topic | Obtain market data of convertible bonds |
| 186 | cb_issue | Convertible Bond Issuance | Bond Topic | Obtain issuance data of convertible bonds |
| 185 | cb_basic | Basic Information of Convertible Bonds | Bond Topic | Obtain basic information of convertible bonds |
| 247 | cb_share | Convertible Bond Conversion Results | Bond Topic | Obtain conversion results of convertible bonds |
| 208 | fund_manager | Fund Managers | Public Fund Topic | Obtain data of public fund managers, including resumes of fund managers |
| 207 | fund_share | Fund Scale | Public Fund Topic | Obtain fund scale data, including ETFs from Shanghai and Shenzhen Stock Exchanges |
| 121 | fund_portfolio | Fund Holdings | Public Fund Topic | Obtain holding data of public funds, updated quarterly |
| 120 | fund_div | Fund Dividends | Public Fund Topic | Obtain dividend data of public funds |
| 119 | fund_nav | Fund Net Value | Public Fund Topic | Obtain net value data of public funds |
| 118 | fund_company | Fund Managers | Public Fund Topic | Obtain the list of public fund managers |
| 19 | fund_basic | Fund List | Public Fund Topic | Obtain the list data of public funds, including on-exchange and off-exchange funds |
| 359 | fund_factor_pro | Technical Factors of Funds (Professional Version) | Public Fund Topic | Obtain daily technical factor data of on-exchange funds for tracking the current trend of on-exchange funds. Data is produced by the Tushare community, covering the entire history; the output parameter _bfq indicates no adjustment. The default parameters of factors are explained in the description. If you need special parameters or more factors, you can contact the administrator for evaluation. |
| 178 | fx_obasic | Basic Information of Foreign Exchange (Overseas) | Foreign Exchange Data | Obtain basic information of overseas foreign exchange, currently only data from FXCM broker is available |
| 179 | fx_daily | Daily K-line Market Data of Foreign Exchange | Foreign Exchange Data | Obtain daily K-line market data of foreign exchange |
| 415 | research_report | Brokerage Research Reports | Large Model Corpus Topic Data | Obtain brokerage research reports - individual stocks, industries, etc., historical data starts from 20170101, incremental updates are done twice a day |
| 143 | news | News Flash | Large Model Corpus Topic Data | Obtain flash news data from mainstream news websites, providing over 6 years of historical news. |
| 154 | cctv_news | CCTV News Script | Large Model Corpus Topic Data | Obtain script data of CCTV News Broadcast, data starts from 2017. |
| 176 | anns_d | Listed Company Announcements | Large Model Corpus Topic Data | Obtain full announcement data, providing PDF download URLs |
| 367 | irm_qa_sz | SZSE Easy Interaction Q&A | Large Model Corpus Topic Data | |
| 366 | irm_qa_sh | SSE e-Interaction Q&A | Large Model Corpus Topic Data | |
| 195 | major_news | Long-form News Reports | Large Model Corpus Topic Data | Obtain long-form news reports, covering major news websites, providing over 8 years of historical news. |
| 406 | npr | National Policy Database | Large Model Corpus Topic Data | Obtain text data of various regulations, policies, approvals, notices, etc. publicly disclosed by national administrative authorities. |
| 245 | cn_ppi | Producer Price Index (PPI) | Macroeconomics, Domestic Macroeconomics, Price Index | Obtain PPI (Producer Price Index) data |
| 228 | cn_cpi | Consumer Price Index (CPI) | Macroeconomics, Domestic Macroeconomics, Price Index | Obtain CPI (Consumer Price Index) data, including national, urban and rural data |
| 149 | shibor | Shibor Interest Rate | Macroeconomics, Domestic Macroeconomics, Interest Rate Data | Shibor interest rate |
| 151 | shibor_lpr | Loan Prime Rate (LPR) | Macroeconomics, Domestic Macroeconomics, Interest Rate Data | Loan Prime Rate (LPR) |
| 152 | libor | Libor Interest Rate | Macroeconomics, Domestic Macroeconomics, Interest Rate Data | Libor interbank offered rate |
| 150 | shibor_quote | Shibor Quotation Data | Macroeconomics, Domestic Macroeconomics, Interest Rate Data | Shibor quotation data |
| 173 | wz_index | Wenzhou Private Lending Interest Rate | Macroeconomics, Domestic Macroeconomics, Interest Rate Data | Wenzhou private lending interest rate, i.e., Wenzhou Index |
| 153 | hibor | Hibor Interest Rate | Macroeconomics, Domestic Macroeconomics, Interest Rate Data | Hibor interest rate |
| 174 | gz_index | Guangzhou Private Lending Interest Rate | Macroeconomics, Domestic Macroeconomics, Interest Rate Data | Guangzhou private lending interest rate |
| 227 | cn_gdp | Gross Domestic Product (GDP) | Macroeconomics, Domestic Macroeconomics, National Economy | Obtain GDP data of national economy |
| 325 | cn_pmi | Purchasing Managers' Index (PMI) | Macroeconomics, Domestic Macroeconomics, Business Climate | Purchasing Managers' Index |
| 310 | sf_month | Monthly Social Financing Increment | Macroeconomics, Domestic Macroeconomics, Finance, Social Financing | Obtain monthly social financing data |
| 242 | cn_m | Money Supply (Monthly) | Macroeconomics, Domestic Macroeconomics, Finance, Money Supply | Obtain monthly data of money supply |
| 221 | us_tbr | US Short-term Treasury Bond Rate | Macroeconomics, International Macroeconomics, US Interest Rate | Obtain US short-term treasury bond rate data |
| 220 | us_trycr | US Treasury Real Yield Curve Rate | Macroeconomics, International Macroeconomics, US Interest Rate | US treasury real yield curve rate |
| 222 | us_tltr | US Long-term Treasury Bond Rate | Macroeconomics, International Macroeconomics, US Interest Rate | US long-term treasury bond rate |
| 223 | us_trltr | Average US Long-term Treasury Real Rate | Macroeconomics, International Macroeconomics, US Interest Rate | Average US long-term treasury real rate |
| 219 | us_tycr | US Treasury Yield Curve Rate | Macroeconomics, International Macroeconomics, US Interest Rate | Obtain daily US treasury yield curve rate data |
| 420 | rt_idx_min | Real-time Minute Data for Indices | Index Topic | Obtain real-time minute data of exchange indices, including 1~60min |
| 419 | idx_mins | Historical Minute Data for Indices | Index Topic | Obtain minute data of exchange indices, supporting 1min/5min/15min/30min/60min market data, providing both Python SDK and HTTP Restful API methods |
| 215 | daily_info | Daily Trading Statistics of Shanghai and Shenzhen Markets | Index Topic | Obtain stock trading statistics of exchanges, including details of each sector |
| 211 | index_global | Major Global Indices | Index Topic | Obtain daily K-line market data of major global indices |
| 181 | index_classify | Shenwan Industry Classification | Index Topic | Obtain Shenwan industry classification, which can get the list information of the 2014 version (28 first-level classifications, 104 second-level classifications, 227 third-level classifications) and the 2021 version (31 first-level classifications, 134 second-level classifications, 346 third-level classifications) |
| 268 | sz_daily_info | Daily Trading Situation of Shenzhen Market | Index Topic | Obtain daily trading overview of Shenzhen market |
| 128 | index_dailybasic | Daily Indicators of Market Indices | Index Topic | Currently only provides daily indicator data of SSE Composite Index, SZSE Component Index, SSE 50, CSI 500, SME Board Index and ChiNext Index |
| 403 | rt_idx_k | Real-time Daily K-line for Indices | Index Topic | Obtain real-time daily K-line market data of exchange indices, supporting one-time extraction of all real-time daily K-line market data of exchange indices by code or code wildcard |
| 96 | index_weight | Index Components and Weights | Index Topic | Obtain components and weights of various indices, monthly data , it is recommended to input the first day and last day of the current month as the start date and end date in the parameters. |
| 373 | ci_index_member | CITIC Industry Components | Index Topic | Extract CITIC industry components by third-level classification, which can provide all components of a certain classification or extract the classification according to stock code, with flexible parameters |
| 358 | idx_factor_pro | Technical Factors of Indices (Professional Version) | Index Topic | Obtain daily technical factor data of indices for tracking the current trend of indices. Data is produced by the Tushare community, covering the entire history; the output parameter _bfq indicates no adjustment. The default parameters of factors are explained in the description. If you need special parameters or more factors, you can contact the administrator for evaluation. Indices include market indices, Shenwan industry indices and CITIC indices. |
| 335 | index_member_all | Shenwan Industry Components (Hierarchical) | Index Topic | Extract Shenwan industry components by third-level classification, which can provide all components of a certain classification or extract the classification according to stock code, with flexible parameters |
| 417 | rt_sw_k | Real-time Market Data of Shenwan Industry Indices | Index Topic | Obtain the latest cross-sectional data of Shenwan industry indices |
| 172 | index_monthly | Monthly K-line Market Data of Indices | Index Topic | Obtain monthly K-line market data of indices, updated once a month |
| 308 | ci_daily | Daily K-line Market Data of CITIC Industry Indices | Index Topic | Obtain daily K-line market data of CITIC industry indices |
| 171 | index_weekly | Weekly K-line Market Data of Indices | Index Topic | Obtain weekly K-line market data of indices |
| 327 | sw_daily | Daily K-line Market Data of Shenwan Industry Indices | Index Topic | Obtain daily K-line market data of Shenwan industry indices (default is the 2021 version of Shenwan market data) |
| 95 | index_daily | Daily K-line Market Data of Indices | Index Topic | Obtain daily market data of indices, which can also be obtained through the General Market Interface. Due to server pressure, the current rule is that a single call can retrieve a maximum of 8000 records, and you can set start and end dates to complete the data. |
| 94 | index_basic | Basic Information of Indices | Index Topic | Obtain basic information of indices. |
| 341 | opt_mins | Minute Market Data for Options | Option Data | Obtain minute data of all market option contracts, supporting 1min/5min/15min/30min/60min market data, providing both Python SDK and HTTP Restful API methods. |
| 159 | opt_daily | Daily K-line Market Data for Options | Option Data | Obtain daily K-line market data of options |
| 158 | opt_basic | Option Contract Information | Option Data | Obtain option contract information |
| 216 | fut_weekly_detail | Weekly Trading Report of Major Futures Varieties | Futures Data | Obtain weekly trading statistics of major varieties in futures exchanges, data starts from March 2010 |
| 368 | ft_limit | Price Limits of Futures Contracts | Futures Data | Obtain daily price limits and minimum margin rates of all futures contracts, data starts from 2005. |
| 340 | rt_fut_min | Real-time Minute Market Data for Futures | Futures Data | Obtain real-time minute data of all market futures contracts, supporting 1min/5min/15min/30min/60min market data, providing Python SDK, HTTP Restful API and websocket methods. If you need minute data of leading contracts, please first obtain the corresponding contract code through the leading mapping interface before extracting the minute data. |
| 135 | fut_basic | Futures Contract Information | Futures Data | Obtain the list data of futures contracts |
| 137 | trade_cal | Trading Calendar | Futures Data | Obtain trading calendar data of major futures exchanges |
| 138 | fut_daily | Daily K-line Market Data for Futures | Futures Data | Daily K-line market data of futures |
| 139 | fut_holding | Daily Position Ranking | Futures Data | Obtain daily transaction and position ranking data |
| 140 | fut_wsr | Warehouse Receipt Daily Report | Futures Data | Obtain daily warehouse receipt data to understand the changes of warehouse receipts in each warehouse/factory warehouse |
| 141 | fut_settle | Daily Settlement Parameters | Futures Data | Obtain daily settlement parameter data, including transaction and delivery fees, etc. |
| 155 | index_daily | Nanhua Futures Index Market Data | Futures Data | Obtain daily market data of Nanhua indices, which can also be obtained through the General Market Interface. |
| 189 | fut_mapping | Leading and Continuous Futures Contracts | Futures Data | Obtain mapping data between leading (or continuous) futures contracts and monthly contracts |
| 313 | ft_mins | Historical Minute Market Data for Futures | Futures Data | Obtain minute data of all market futures contracts, supporting 1min/5min/15min/30min/60min market data, providing both Python SDK and HTTP Restful API methods. If you need minute data of leading contracts, please first obtain the corresponding contract code through the leading mapping interface before extracting the minute data. |
| 337 | fut_weekly_monthly | Weekly/Monthly K-line Market Data for Futures (Updated Daily) | Futures Data | Weekly/Monthly K-line market data of futures (updated daily) |
| 391 | hk_cashflow | Cash Flow Statement of Hong Kong Stocks | Hong Kong Stock Data | Obtain cash flow statement data of Hong Kong listed companies |
| 390 | hk_balancesheet | Balance Sheet of Hong Kong Stocks | Hong Kong Stock Data | Obtain balance sheet data of Hong Kong listed companies |
| 389 | hk_income | Income Statement of Hong Kong Stocks | Hong Kong Stock Data | Obtain income statement data of Hong Kong listed companies |
| 388 | hk_fina_indicator | Financial Indicator Data of Hong Kong Stocks | Hong Kong Stock Data | Obtain financial indicator data of Hong Kong listed companies. To avoid server pressure, a single request can return a maximum of 200 records at this stage. You can obtain more data by setting dates and making multiple requests. |
| 401 | hk_adjfactor | Adjustment Factor of Hong Kong Stocks | Hong Kong Stock Data | Obtain daily adjustment factor data of Hong Kong stocks, updated daily in a rolling manner |
| 339 | hk_daily_adj | Adjusted Market Data of Hong Kong Stocks | Hong Kong Stock Data | Obtain adjusted market data of Hong Kong stocks, providing multiple data indicators such as stock capitalization, market value, transaction volume and turnover rate |
| 383 | rt_hk_k | Real-time Daily K-line Market Data of Hong Kong Stocks | Hong Kong Stock Data | Obtain real-time daily K-line market data of Hong Kong stocks, supporting one-time extraction of all real-time daily K-line market data of stocks by stock code or stock code wildcard |
| 191 | hk_basic | Basic Information of Hong Kong Stocks | Hong Kong Stock Data | Obtain list information of Hong Kong stocks |
| 192 | hk_daily | Daily K-line Market Data of Hong Kong Stocks | Hong Kong Stock Data | Obtain daily incremental and historical market data of Hong Kong stocks, updated around 18:00 every day |
| 304 | hk_mins | Minute Market Data of Hong Kong Stocks | Hong Kong Stock Data | Minute data of Hong Kong stocks, supporting 1min/5min/15min/30min/60min market data, providing both Python SDK and HTTP Restful API methods |
| 250 | hk_tradecal | Trading Calendar of Hong Kong Stocks | Hong Kong Stock Data | Obtain trading calendar data |
| 285 | sge_daily | Daily Spot Market Data of Shanghai Gold Exchange | Spot Data | Obtain daily K-line market data of spot contracts of Shanghai Gold Exchange |
| 284 | sge_basic | Basic Information of Shanghai Gold Exchange Spot | Spot Data | Obtain basic information of spot contracts of Shanghai Gold Exchange |
| 393 | us_fina_indicator | Financial Indicator Data of US Stocks | US Stock Data | Obtain financial indicator data of US listed companies, currently only covering major US stocks and Chinese concept stocks. To avoid server pressure, a single request can return a maximum of 200 records at this stage. You can obtain more data by setting dates and making multiple requests. |
| 402 | us_adjfactor | Adjustment Factor of US Stocks | US Stock Data | Obtain daily adjustment factor data of US stocks, updated in a rolling manner after the US stock market closes every day |
| 396 | us_cashflow | Cash Flow Statement of US Stocks | US Stock Data | Obtain cash flow statement data of US listed companies (currently only covering major US stocks and Chinese concept stocks) |
| 395 | us_balancesheet | Balance Sheet of US Stocks | US Stock Data | Obtain balance sheet data of US listed companies (currently only covering major US stocks and Chinese concept stocks) |
| 394 | us_income | Income Statement of US Stocks | US Stock Data | Obtain income statement data of US listed companies (currently only covering major US stocks and Chinese concept stocks) |
| 254 | us_daily | Daily K-line Market Data of US Stocks | US Stock Data | Obtain market data of US stocks (unadjusted), including full historical market data of all stocks, as well as important market and valuation indicators |
| 253 | us_tradecal | Trading Calendar of US Stocks | US Stock Data | Obtain trading calendar information of US stocks |
| 252 | us_basic | Basic Information of US Stocks | US Stock Data | Obtain list information of US stocks |
| 338 | us_daily_adj | Adjusted Market Data of US Stocks | US Stock Data | Obtain adjusted market data of US stocks, supporting all US market stocks, providing multiple data indicators such as capitalization, market value, adjustment factor and transaction information |
| 326 | margin_secs | Margin Trading and Short Selling Targets (Pre-market) | Stock Data, Margin Trading and Securities Lending | Obtain margin trading and short selling targets (including ETFs) from Shanghai, Shenzhen and Beijing Stock Exchanges, updated pre-market every day |
| 331 | slb_len | Summary of Securities Lending Transactions | Stock Data, Margin Trading and Securities Lending | Summary of securities lending transactions |
| 332 | slb_sec | Summary of Securities Borrowing Transactions (Suspended) | Stock Data, Margin Trading and Securities Lending | Summary of securities borrowing transactions |
| 333 | slb_sec_detail | Details of Securities Borrowing Transactions (Suspended) | Stock Data, Margin Trading and Securities Lending | Details of securities borrowing transactions |
| 59 | margin_detail | Details of Margin Trading and Short Selling Transactions | Stock Data, Margin Trading and Securities Lending | Obtain daily details of margin trading and short selling in Shanghai and Shenzhen Stock Exchanges |
| 58 | margin | Summary of Margin Trading and Short Selling Transactions | Stock Data, Margin Trading and Securities Lending | Obtain daily summary data of margin trading and short selling transactions |
| 334 | slb_len_mm | Summary of Market-making Securities Borrowing Transactions (Suspended) | Stock Data, Margin Trading and Securities Lending | Summary of market-making securities borrowing transactions |
| 124 | repurchase | Stock Repurchase | Stock Data, Reference Data | Obtain stock repurchase data of listed companies |
| 110 | pledge_stat | Stock Pledge Statistics | Stock Data, Reference Data | Obtain stock pledge statistics data |
| 160 | share_float | Restricted Share Unlocking | Stock Data, Reference Data | Obtain restricted share unlocking data |
| 161 | block_trade | Block Trading | Stock Data, Reference Data | Block trading |
| 164 | stk_account | Stock Account Opening Data (Suspended) | Stock Data, Reference Data | Obtain stock account opening data, with a statistical cycle of one week |
| 165 | stk_account_old | Stock Account Opening Data (Old Version) | Stock Data, Reference Data | Obtain old format stock account opening data, data starts from January 2008 to May 29, 2015. For new data, please obtain it through the Stock Account Opening Data interface. |
| 166 | stk_holdernumber | Number of Shareholders | Stock Data, Reference Data | Obtain the number of shareholders of listed companies, data is announced irregularly |
| 175 | stk_holdertrade | Shareholder Increase/Decrease | Stock Data, Reference Data | Obtain share increase/decrease data of important shareholders of listed companies, to understand the changes in share holdings of important shareholders in recent and historical periods |
| 61 | top10_holders | Top 10 Shareholders | Stock Data, Reference Data | Obtain data of the top 10 shareholders of listed companies, including information such as holding quantity and proportion |
| 111 | pledge_detail | Details of Stock Pledge | Stock Data, Reference Data | Obtain detailed data of stock pledge |
| 62 | top10_floatholders | Top 10 Tradable Shareholders | Stock Data, Reference Data | Obtain data of the top 10 tradable shareholders of listed companies |
| 423 | st | ST Risk Warning Board Stocks | Stock Data, Basic Data | List of ST risk warning board stocks |
| 398 | stock_hsgt | Stock List of Shanghai-Shenzhen-Hong Kong Stock Connect | Stock Data, Basic Data | Obtain the stock list of Shanghai-Shenzhen-Hong Kong Stock Connect |
| 397 | stock_st | ST Stock List | Stock Data, Basic Data | Obtain the list of ST stocks, which can obtain the historical daily ST list according to the trading date |
| 375 | bse_mapping | Old and New Code Mapping of Beijing Stock Exchange | Stock Data, Basic Data | Obtain the old and new code mapping table data after the stock code change of Beijing Stock Exchange |
| 329 | stk_premarket | Daily Capitalization (Pre-market) | Stock Data, Basic Data | Obtain the capitalization situation of stocks on the current day before the market opens, including total capitalization, tradable capitalization, price limits, etc. |
| 123 | new_share | IPO New Stock Listing | Stock Data, Basic Data | Obtain the list data of IPO new stock listings |
| 194 | stk_rewards | Management Compensation and Shareholding | Stock Data, Basic Data | Obtain management compensation and shareholding data of listed companies |
| 193 | stk_managers | Management of Listed Companies | Stock Data, Basic Data | Obtain management data of listed companies |
| 112 | stock_company | Basic Information of Listed Companies | Stock Data, Basic Data | Obtain basic information of listed companies, a single extraction can get 4500 records, you can extract in batches according to the exchange |
| 100 | namechange | Former Names of Stocks | Stock Data, Basic Data | Historical name change records |
| 26 | trade_cal | Trading Calendar | Stock Data, Basic Data | Obtain trading calendar data of major exchanges, default is Shanghai Stock Exchange |
| 25 | stock_basic | Stock List | Stock Data, Basic Data | Obtain basic information data, including stock code, name, listing date, delisting date, etc. |
| 262 | bak_basic | Historical Stock List | Stock Data, Basic Data | Obtain the backup basic list, data starts from 2016 |
| 382 | dc_daily | Market Data of Dongfang Caifu Concept and Industry Indices | Stock Data, Board Trading Topic Data | Obtain market data of Dongfang Caifu concept sectors, industry index sectors and regional sectors, historical data starts from 2020 |
| 321 | dc_hot | Dongfang Caifu App Hot List | Stock Data, Board Trading Topic Data | Obtain hot list data of Dongfang Caifu App, including A-share market, ETF funds, Hong Kong stock market, US stock market, etc. Extracted 4 times during the trading day and 4 times after the market closes, with the latest extraction around 22:00. |
| 298 | limit_list_d | Price Limit and Board-breaking Data | Stock Data, Board Trading Topic Data | Obtain daily price limit and board-breaking data of A-shares, data starts from 2020 (statistics of ST stocks are not provided) |
| 311 | hm_list | Complete List of Market Hot Money | Stock Data, Board Trading Topic Data | Obtain classification list information of hot money |
| 347 | kpl_list | List Data (KaiPanLa) | Stock Data, Board Trading Topic Data | Obtain list data such as price limit, limit down and board-breaking from KaiPanLa |
| 261 | ths_member | Components of Tonghuashun Industry and Concept Sectors | Stock Data, Board Trading Topic Data | Obtain component list of Tonghuashun concept sectors. Note: Data copyright belongs to Tonghuashun. For commercial use, please contact Tonghuashun actively. |
| 260 | ths_daily | Market Data of Tonghuashun Concept and Industry Indices | Stock Data, Board Trading Topic Data | Obtain market data of Tonghuashun sector indices. Note: Data copyright belongs to Tonghuashun. For commercial use, please contact Tonghuashun actively. For help, please contact WeChat: waditu_a |
| 259 | ths_index | Tonghuashun Industry and Concept Sectors | Stock Data, Board Trading Topic Data | Obtain Tonghuashun sector indices. Note: Data copyright belongs to Tonghuashun. For commercial use, please contact Tonghuashun actively. For help, please contact WeChat: waditu_a |
| 107 | top_inst | Institutional Trading Orders on Dragon and Tiger List | Stock Data, Board Trading Topic Data | Institutional transaction details on Dragon and Tiger List |
| 351 | kpl_concept_cons | Concept Components (KaiPanLa) | Stock Data, Board Trading Topic Data | Obtain component stocks of concept themes from KaiPanLa |
| 355 | limit_list_ths | Tonghuashun Price Limit List | Stock Data, Board Trading Topic Data | Obtain daily price limit list data from Tonghuashun, historical data starts from 20231101, incremental updates are done around 16:00 every day |
| 356 | limit_step | Continuous Price Limit Ladder of Stocks | Stock Data, Board Trading Topic Data | Obtain stocks that advance in continuous price limits every day, which can analyze the number of continuous price limit advances every day and judge the strong market sentiment |
| 357 | limit_cpt_list | Statistics of the Strongest Price Limit Sectors | Stock Data, Board Trading Topic Data | Obtain the concept sectors with the most price limit stocks every day, which can analyze the rotation of strong sectors and judge capital movement |
| 362 | dc_index | Dongfang Caifu Concept Sectors | Stock Data, Board Trading Topic Data | Obtain concept sector data of Dongfang Caifu for each trading day, supporting query by date |
| 363 | dc_member | Components of Dongfang Caifu Concept Sectors | Stock Data, Board Trading Topic Data | Obtain daily component data of Dongfang Caifu sectors, which can obtain historical components according to concept sector code and trading date |
| 369 | stk_auction | Opening Auction Transactions (Current Day) | Stock Data, Board Trading Topic Data | Obtain the opening auction transaction situation of individual stocks and ETFs on the current day, which can be obtained between 9:25~9:29 every day |
| 376 | tdx_index | Tongdaxin Sector Information | Stock Data, Board Trading Topic Data | Obtain basic information of Tongdaxin sectors, including concept sectors, industries, styles, regions, etc. |
| 106 | top_list | Daily Statistical Orders on Dragon and Tiger List | Stock Data, Board Trading Topic Data | Daily transaction details on Dragon and Tiger List |
| 377 | tdx_member | Components of Tongdaxin Sectors | Stock Data, Board Trading Topic Data | Obtain component stock information of various Tongdaxin sectors |
| 378 | tdx_daily | Market Data of Tongdaxin Sectors | Stock Data, Board Trading Topic Data | Obtain market data of various Tongdaxin sectors, including transaction and valuation data |
| 312 | hm_detail | Daily Details of Hot Money Transactions | Stock Data, Board Trading Topic Data | Obtain daily details of hot money transactions, data starts from August 2022. For the hot money classification list, please click <a href="https://tushare.pro/document/2?doc_id=311">Hot Money List</a> |
| 320 | ths_hot | Tonghuashun App Hot List Data | Stock Data, Board Trading Topic Data | Obtain hot list data of Tonghuashun App, including hot stocks, concept sectors, ETFs, convertible bonds, Hong Kong and US stocks, etc. Extracted 4 times during the trading day and 4 times after the market closes, with the latest extraction around 22:00. |
| 364 | stk_nineturn | Magic Nine-turn Indicator | Stock Data, Featured Data | Magic Nine-turn (also known as "Nine-turn Sequence") is a stock trend reversal indicator based on technical analysis, whose idea comes from the TD Sequence of technical analysis master Tom DeMark. The core function of this indicator is to identify the potential reversal points of stock prices by recognizing the specific trend of stock prices for 9 consecutive days during the rise or fall process, thus helping investors improve the success rate of bottom-fishing and top-escape. The daily line level combined with the 60min nine-turn has a better effect, data starts from 20230101. |
| 188 | hk_hold | Shareholding Details of Shanghai-Shenzhen Stock Connect | Stock Data, Featured Data | Obtain shareholding details of Shanghai-Shenzhen Stock Connect, data source is Hong Kong Stock Exchange. |
| 267 | broker_recommend | Brokerage Monthly Top Stocks | Stock Data, Featured Data | Obtain brokerage monthly top stocks, usually updated within 1~3 days of each month |
| 274 | ccass_hold_detail | Shareholding Details of Central Clearing and Settlement System | Stock Data, Featured Data | Obtain shareholding details of institutional seats in the Central Clearing and Settlement System, data covers the entire history, and the current day's data is completed before 9:00 of the next trading day according to the disclosure time of the exchange |
| 275 | stk_surv | Institutional Research Data | Stock Data, Featured Data | Obtain institutional research record data of listed companies |
| 292 | report_rc | Brokerage Earnings Forecast Data | Stock Data, Featured Data | Obtain earnings forecast data from brokerage (sell-side) research reports every day, data starts from 2010, updated between 19~22:00 every night |
| 293 | cyq_perf | Daily Chip Cost and Win Rate | Stock Data, Featured Data | Obtain the average chip cost and win rate situation of A-shares every day, updated around 18~19:00 every day, data starts from 2018 |
| 294 | cyq_chips | Daily Chip Distribution | Stock Data, Featured Data | Obtain the daily chip distribution situation of A-shares, providing the proportion of each price level, data starts from 2018, updated between 18~19:00 every day |
| 295 | ccass_hold | Shareholding Statistics of Central Clearing and Settlement System | Stock Data, Featured Data | Obtain summary shareholding data of the Central Clearing and Settlement System, covering all historical data, and the current day's data is completed and stored before 9:00 of the next trading day according to the disclosure time of the exchange |
| 353 | stk_auction_o | Opening Auction Data of Stocks | Stock Data, Featured Data | Opening 9:30 auction data of stocks, updated after the market closes every day |
| 354 | stk_auction_c | Closing Auction Data of Stocks | Stock Data, Featured Data | Closing 15:00 auction data of stocks, updated after the market closes every day |
| 399 | stk_ah_comparison | AH Stock Price Comparison | Stock Data, Featured Data | AH stock price comparison data, which can obtain historical data according to the trading date |
| 328 | stk_factor_pro | Technical Factors of Stocks (Professional Version) | Stock Data, Featured Data | Obtain daily technical factor data of stocks for tracking the current trend of stocks. Data is produced by the Tushare community, covering the entire history; the output parameter _bfq indicates no adjustment, _qfq indicates forward adjustment, _hfq indicates backward adjustment. The default parameters of factors are explained in the description. If you need special parameters or more factors, you can contact the administrator for evaluation. |
| 27 | daily | Historical Daily K-line | Stock Data, Market Data | Obtain stock market data, or obtain data through the General Market Interface, including forward and backward adjusted data |
| 146 | pro_bar | Adjusted Market Data | Stock Data, Market Data | |
| 145 | monthly | Monthly K-line Market Data | Stock Data, Market Data | Obtain monthly K-line data of A-shares |
| 374 | rt_min | Real-time Minute Market Data for Stocks | Stock Data, Market Data | Obtain real-time minute data of all A-shares, including 1~60min |
| 372 | rt_k | Real-time Daily K-line Market Data for Stocks | Stock Data, Market Data | Obtain real-time daily K-line market data of stocks, supporting one-time extraction of all real-time daily K-line market data of stocks by stock code or stock code wildcard |
| 370 | stk_mins | Historical Minute Market Data for Stocks | Stock Data, Market Data | Obtain minute data of A-shares, supporting 1min/5min/15min/30min/60min market data, providing both Python SDK and HTTP Restful API methods |
| 365 | stk_week_month_adj | Weekly/Monthly Adjusted Market Data of Stocks (Updated Daily) | Stock Data, Market Data | Weekly/Monthly adjusted market data of stocks (updated daily) |
| 336 | stk_weekly_monthly | Weekly/Monthly K-line Market Data of Stocks (Updated Daily) | Stock Data, Market Data | Weekly/Monthly K-line market data of stocks (updated daily) |
| 255 | bak_daily | Backup Market Data | Stock Data, Market Data | Obtain backup market data, including specific market indicators (data starts from around mid-2017, with a few days of data missing in the early stage, and normal in recent periods) |
| 144 | weekly | Weekly K-line Market Data | Stock Data, Market Data | Obtain weekly K-line market data of A-shares, this interface is updated on the last trading day of each week. If you need weekly K-line data updated every day, please use the Weekly K-line Market Data Interface Updated Daily. |
| 214 | suspend_d | Daily Suspension and Resumption Information | Stock Data, Market Data | Obtain daily suspension and resumption information of stocks by date |
| 196 | ggt_daily | Daily Transaction Statistics of Hong Kong Stock Connect | Stock Data, Market Data | Obtain daily transaction information of Hong Kong Stock Connect, data starts from 2014 |
| 183 | stk_limit | Daily Price Limit of Stocks | Stock Data, Market Data | Obtain daily price limit data of the entire market (including A/B shares and funds), including price limit up, price limit down, etc., updated around 8:40 every trading day for the current day's stock price limits. |
| 109 | pro_bar | General Market Interface | Stock Data, Market Data | |
| 49 | ggt_top10 | Top 10 Traded Stocks of Hong Kong Stock Connect | Stock Data, Market Data | Obtain daily transaction data of Hong Kong Stock Connect, including detailed data of Shanghai and Shenzhen markets, updated between 18~20:00 every day |
| 48 | hsgt_top10 | Top 10 Traded Stocks of Shanghai-Shenzhen Stock Connect | Stock Data, Market Data | Obtain detailed daily transaction data of the top 10 traded stocks of Shanghai Stock Connect and Shenzhen Stock Connect, updated between 18~20:00 every day |
| 32 | daily_basic | Daily Indicators | Stock Data, Market Data | Obtain important daily fundamental indicators of all stocks, which can be used for stock selection analysis, report display, etc. A single request can return a maximum of 6000 records, and you can extract all historical data by looping through daily lines. |
| 28 | adj_factor | Adjustment Factor | Stock Data, Market Data | This interface is produced by Tushare itself, obtaining stock adjustment factors, which can extract all historical adjustment factors of a single stock or the adjustment factors of all stocks on a single day. |
| 197 | ggt_monthly | Monthly Transaction Statistics of Hong Kong Stock Connect | Stock Data, Market Data | Monthly transaction information of Hong Kong Stock Connect, data starts from 2014 |
| 33 | income | Income Statement | Stock Data, Financial Data | Obtain income statement data of listed companies |
| 44 | cashflow | Cash Flow Statement | Stock Data, Financial Data | Obtain cash flow statement data of listed companies |
| 36 | balancesheet | Balance Sheet | Stock Data, Financial Data | Obtain balance sheet data of listed companies |
| 46 | express | Performance Express | Stock Data, Financial Data | Obtain performance express data of listed companies |
| 79 | fina_indicator | Financial Indicator Data | Stock Data, Financial Data | Obtain financial indicator data of listed companies. To avoid server pressure, a single request can return a maximum of 100 records at this stage. You can obtain more data by setting dates and making multiple requests. |
| 81 | fina_mainbz | Main Business Composition | Stock Data, Financial Data | Obtain the main business composition of listed companies, in two ways: by region and by product |
| 103 | dividend | Dividend and Bonus Issue Data | Stock Data, Financial Data | Dividend and bonus issue data |
| 162 | disclosure_date | Financial Report Disclosure Date Schedule | Stock Data, Financial Data | Obtain the planned disclosure date of financial reports |
| 45 | forecast | Performance Forecast | Stock Data, Financial Data | Obtain performance forecast data |
| 80 | fina_audit | Financial Audit Opinions | Stock Data, Financial Data | Obtain regular financial audit opinion data of listed companies |
| 47 | moneyflow_hsgt | Capital Flow of Shanghai-Shenzhen-Hong Kong Stock Connect | Stock Data, Capital Flow Data | Obtain daily capital flow data of Shanghai Stock Connect, Shenzhen Stock Connect and Hong Kong Stock Connect, a single request can return a maximum of 300 records, with no limit on the total amount. |
| 170 | moneyflow | Capital Flow of Individual Stocks | Stock Data, Capital Flow Data | Obtain capital flow data of Shanghai and Shenzhen A-shares, analyzing the transaction situation of large and small orders, used to judge capital movement, data starts from 2010. |
| 343 | moneyflow_ind_ths | Capital Flow of Industries (THS) | Stock Data, Capital Flow Data | Obtain capital flow of Tonghuashun industries, updated after the market closes every day |
| 344 | moneyflow_ind_dc | Capital Flow of Sectors (DC) | Stock Data, Capital Flow Data | Obtain capital flow of Dongfang Caifu sectors, updated after the market closes every day |
| 345 | moneyflow_mkt_dc | Capital Flow of Market (DC) | Stock Data, Capital Flow Data | Obtain capital flow data of Dongfang Caifu market, updated after the market closes every day |
| 348 | moneyflow_ths | Capital Flow of Individual Stocks (THS) | Stock Data, Capital Flow Data | Obtain capital flow data of individual stocks from Tonghuashun, updated after the market closes every day |
| 349 | moneyflow_dc | Capital Flow of Individual Stocks (DC) | Stock Data, Capital Flow Data | Obtain capital flow data of individual stocks from Dongfang Caifu, updated after the market closes every day, data starts from 20230911 |
| 371 | moneyflow_cnt_ths | Capital Flow of Concept Sectors (THS) | Stock Data, Capital Flow Data | Obtain daily capital flow of Tonghuashun concept sectors |
| 156 | film_record | National Film Script Filing Data | Industry Economy, TMT Industry | Obtain public filing data of national film scripts |
| 180 | teleplay_record | National TV Drama Filing and Publicity Data | Industry Economy, TMT Industry | Obtain filing and publicity data of national TV drama production since 2009 |
| 87 | tmt_twincomedetail | Monthly Revenue Details of Taiwan Electronic Industry | Industry Economy, TMT Industry | Obtain monthly revenue situation of various products of listed companies in Taiwan's TMT industry. |
| 88 | tmt_twincome | Monthly Revenue of Taiwan Electronic Industry | Industry Economy, TMT Industry | Obtain monthly revenue data of various products in Taiwan's TMT electronic industry. |
| 113 | bo_monthly | Monthly Box Office of Movies | Industry Economy, TMT Industry | Obtain monthly box office data of movies |
| 115 | bo_daily | Daily Box Office of Movies | Industry Economy, TMT Industry | Obtain daily box office data of movies |
| 116 | bo_cinema | Daily Box Office of Cinemas | Industry Economy, TMT Industry | Obtain daily box office data of various cinemas |
| 114 | bo_weekly | Weekly Box Office of Movies | Industry Economy, TMT Industry | Obtain weekly box office data of movies |
| 265 | fund_sales_ratio | Proportion of Public Fund Sales Scale by Channel | Wealth Management, Fund Sales Industry Data | Obtain the proportion of public fund sales scale by channel, updated annually |
| 266 | fund_sales_vol | Public Fund Sales Scale of Sales Institutions | Wealth Management, Fund Sales Industry Data | Obtain the public fund sales scale of sales institutions, this data has been published since Q1 2021, updated quarterly |