FTShare Skill 119 接口清单

基于 ftshare-lab/ftshare-skills 仓库 FTShare-market-data/sub-skills 当前 119 个子 Skill 生成。该清单展示 Skill 层面暴露给 Agent 的任务型接口,和 SDK 176 原始接口不是同一口径。

生成时间:2026-06-29 16:24Sub-skills:119分类:11GET/未知:{'GET': 106, '未知': 11, 'GET / POST': 2}下载 CSV

总览

Skill 口径是面向 Agent 的任务型封装:一个 sub-skill 通常对应一个可直接执行的数据查询任务,内部通过 run.py 调用对应 handler。它和 MCP/API 口径不同,不追求所有原始接口完整展开,而强调让 Agent 更容易选择和调用。

119Sub-skills
11场景分类
66含必填参数
19支持 --all 全量
15宏观经济 Skill
当前显示 119 / 119 个 sub-skills

FTSHARE SKILL CATEGORY 01

指数 / 行业 / 板块

18 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
00110jqk-board-all-kline查询同花顺全板块 K 线GETGET /gateway/api/v1/market/data/ths-all-board-klinestart_date, end_date, page, page_size查询同花顺所有板块在指定日期范围内的 K 线数据(分页)python <RUN_PY> 10jqk-board-all-kline --start-date 2026-05-20 --end-date 2026-05-25
00210jqk-board-kline查询同花顺板块历史 K 线GETGET /gateway/api/v1/market/data/ths-board-klineboard_codeboard_code, page, page_size查询指定同花顺板块的历史日 K 线数据python <RUN_PY> 10jqk-board-kline --board-code 885311
00310jqk-board-list查询同花顺板块列表GETGET /gateway/api/v1/market/data/ths-board-listmodule, search查询同花顺全部板块(概念/证监会/行业/地域)的代码与名称列表python <RUN_PY> 10jqk-board-list
008eastmoney-board-constituents查询东财板块成分股GET/gateway/api/v1/market/data/eastmoney-board-constituentsboard_codeboard_code查询指定东财板块的全部成分股代码和名称python <RUN_PY> eastmoney-board-constituents --board_code BK1024
009eastmoney-board-daily-ohlc查询东财单板块历史 OHLCGET/gateway/api/v1/market/data/eastmoney-board-daily-ohlcboard_codeboard_code, start_date, end_date, page, page_size, all查询指定东财板块历史 OHLC 数据,支持日期范围过滤与分页python <RUN_PY> eastmoney-board-daily-ohlc --board_code BK1024 --page 1 --page_size 20
010eastmoney-board-latest-ohlc查询东财单板块最新 OHLCGET/gateway/api/v1/market/data/eastmoney-board-latest-ohlcboard_code, page, page_size, all查询指定东财板块最新 OHLC 行情数据,支持分页python <RUN_PY> eastmoney-board-latest-ohlc --board_code BK1024
011eastmoney-concept-boards查询东财概念板块列表GET/gateway/api/v1/market/data/eastmoney-concept-boards查询东财概念板块基础信息与成分代码列表,返回全量板块python <RUN_PY> eastmoney-concept-boards
012eastmoney-hk-index-daily-kline对外接口-查询东财港股指数日K线GETGET /gateway/api/v1/market/data/eastmoney-hk-index-daily-klineindex_code, trade_date, start_date, end_date, page, page_size, all查询港股指数(恒生、国企、恒生科技等)日 K 线:开高低收、成交量、成交额、振幅、涨跌幅、涨跌额、换手率。数据源东方财富,ClickHouse em_hk_index_daily_kline。python <RUN_PY> eastmoney-hk-index-daily-kline
057index-description-all查询全部指数基础信息GETGET /gateway/api/v1/market/data/index-description-all获取当前服务支持的 A 股相关指数列表及简称、全称、市净率、市盈率(TTM)等基础信息python <RUN_PY> index-description-all
058index-description-download下载指数描述文件GET/gateway/api/v1/market/data/index/index_description/{url_hash}url_hashurl_hash, output根据「分页查询指数描述列表」返回的 url_hash 下载对应指数描述文件(内容为 PDF)python <RUN_PY> index-description-download --url-hash <url_hash>
059index-description-paginated分页查询指数描述列表GET/gateway/api/v1/market/data/index/index_descriptionpage, page_size分页获取 A 股相关指数描述信息,含指数代码、名称、简介及用于下载文件的 url_hashpython <RUN_PY> index-description-paginated --page 1 --page-size 20
060index-detail查询单只指数详情GETGET /gateway/api/v1/market/data/daec/index?symbol=:indexindexindex, masks获取 A 股指定指数的详情(名称、行情点位、成交、涨跌幅等);支持通过 masks 按需返回部分字段python <RUN_PY> index-detail --index 000001.XSHG
061index-list-paginated指数列表(分页、排序、筛选)GETGET /gateway/api/v1/market/data/daec/indicesorder_by, ob, filter, masks, page_size, page_no分页获取 A 股指数列表,支持按字段排序、按条件筛选、按需返回字段(masks);不传分页参数时返回全部(先筛选、排序后再截断)python <RUN_PY> index-list-paginated
062index-ohlcs查询单只指数 OHLC K 线GETGET /gateway/api/v1/market/data/daec/history/ohlcsindex, sinceindex, since, until, interval, adjust获取 A 股指定指数在指定日期区间、周期的 K 线(开高低收、成交量、成交额),支持日/周/月线与前/后复权python <RUN_PY> index-ohlcs --index 000001.XSHG --since 20240101 --until 20240131
063index-prices查询单只指数分时价格(一分钟级别)GETGET /gateway/api/v1/market/data/daec/history/pricesindex, since, since_ts_msindex, since, since_ts_ms获取 A 股指定指数在指定时间范围内的分时数据(一分钟一根),用于分时图、当日/多日走势;每条含该分钟的指数点位、成交量、成交额、时间戳;支持从今天起、从五日前起、从 N 个交易日前起或从指定毫秒时间戳起python <RUN_PY> index-prices --index 000001.XSHG --since TODAY
064index-weight-download下载指数权重文件GET/gateway/api/v1/market/data/index/index_weight/{url_hash}url_hashurl_hash, output根据「分页查询指数权重列表」或「分页查询指数权重汇总」返回的 url_hash 下载该期指数权重 Excel(xlsx)二进制文件python <RUN_PY> index-weight-download --url-hash <url_hash>
065index-weight-list分页查询指数权重列表GET/gateway/api/v1/market/data/index/index_weightindex_codeindex_code, date, page, page_size按指数代码(及可选日期)分页查询成份权重明细;每条记录含成份代码、名称、权重比例及该期文件 url_hashpython <RUN_PY> index-weight-list --index-code 000300 --date 20250320 --page 1 --page-size 20
066index-weight-summary分页查询指数权重汇总GET/gateway/api/v1/market/data/index/index_weight_summarypage, page_size按指数汇总各期权重数据的 date 与 url_hash,便于再调用「下载指数权重文件」获取具体权重表python <RUN_PY> index-weight-summary --page 1 --page-size 20

FTSHARE SKILL CATEGORY 02

A 股基础 / 行情

8 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
004block-trades查询大宗交易列表GET/gateway/api/v1/market/data/block-trades获取 A 股大宗交易记录,包含买卖方营业部、成交价、成交量、溢价率等python <RUN_PY> block-trades
017eastmoney-us-stock-list查询东财美股列表GET/gateway/api/v1/market/data/eastmoney-us-stock-listpage, page_size, all获取东财美股全量列表(~5700+ 只),含代码、名称、市值、最新价、涨跌幅、市盈率等字段,支持服务端分页python <RUN_PY> eastmoney-us-stock-list
101stock-ipos获取股票 IPO 列表GET / POST/gateway/api/v1/market/data/stock-ipospage, page_sizepage, page_size, all获取 A 股 IPO 列表,含发行价格、发行数量、申购日期、上市日期等,支持分页查询python <RUN_PY> stock-ipos --page 1 --page_size 20
102stock-list-all-stocks获取所有股票代码列表GET/gateway/api/v1/market/data/stock-list获取所有 A 股股票的代码和名称列表,支持沪深京股票,自动返回最新交易日的数据python <RUN_PY> stock-list-all-stocks
103stock-ohlcs查询单只股票 OHLC K 线GET/gateway/api/v1/market/data/daec/history/ohlcsstock, sincestock, since, until, interval, adjust获取 A 股指定股票在指定日期区间、周期的 K 线(开高低收、成交量、成交额),支持日/周/月线与前/后复权python <RUN_PY> stock-ohlcs --stock 600000.XSHG --since 20240101 --until 20240131
108stock-prices查询单只股票分时价格(一分钟级别)GET/gateway/api/v1/market/data/daec/history/pricesstock, since, since_ts_msstock, since, since_ts_ms获取 A 股指定股票在指定时间范围内的分时数据(一分钟一根),用于分时图、当日/多日走势;每条含该分钟的价格、成交量、成交额、均价、时间戳;支持从今天起、从五日前起、从 N 个交易日前起或从指定毫秒时间戳起python <RUN_PY> stock-prices --stock 000001.XSHG --since TODAY
109stock-quotes-list查询 A 股行情列表(分页)GEThttps://market.ft.tech/gateway/api/v1/market/data/daec/stocksorder_by, page_no, page_sizeorder_by, page_no, page_size, filter, masks获取 A 股(沪深京)股票行情列表,支持按板块筛选、多字段排序与分页,用于行情中心「个股行情」等列表展示python <RUN_PY> stock-quotes-list --order_by "change_rate desc" --page_no 1 --page_size 30
112stock-security-info查询单只股票/基金/指数信息GEThttps://ftai.chat/api/v1/market/security/{symbol}/infosymbolsymbol按标的代码查询单只股票、基金或指数的实时行情、多周期涨跌幅及估值指标(市盈率、市净率、每股净资产等)python <RUN_PY> stock-security-info --symbol 600519.SH

FTSHARE SKILL CATEGORY 03

ETF / 基金 / 可转债

16 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
005cb-base-data查询可转债基础信息GETGET /gateway/api/v1/market/data/cb/cb-base-datasymbol_codesymbol_code根据转债代码获取单只可转债的完整基础信息;数据为前一交易日可转债基础数据python <RUN_PY> cb-base-data --symbol_code 110070.SH
006cb-lists获取可转债列表GETGET /gateway/api/v1/market/data/cb/cb-lists获取当前可转债全量列表(全称、债券代码、正股代码、交易所);仅包含通过可转债号段判断的标的,数据为前一交易日python <RUN_PY> cb-lists
034etf-component查询单只 ETF 成份GETGET /gateway/api/v1/market/data/etf-componentsymbolsymbol根据标的代码查询单只 ETF 的成份股列表(成份股代码与名称);未找到或报错时接口返回相应错误信息python <RUN_PY> etf-component --symbol 510300.XSHG
035etf-description-all查询全部ETF基础信息GET/gateway/api/v1/market/data/etf-description-all获取 ETF 列表(代码与名称)及部分基础属性信息,用于列表展示、筛选与检索python <RUN_PY> etf-description-all
036etf-detail查询单只 ETF 详情GETGET /gateway/api/v1/market/data/daec/etf?symbol=:etfetfetf, masks获取 A 股指定 ETF 的详情(名称、行情、盘口、市值、涨跌幅、跟踪指数、投资类型等);支持通过 masks 按需返回部分字段;带登录态时可能包含是否在默认分组python <RUN_PY> etf-detail --etf 510050.XSHG
037etf-list-paginatedETF 分页列表GETGET /gateway/api/v1/market/data/daec/etfsorder_by, ob, filter, masks, page_size, page_no, filter_index分页获取 A 股 ETF 列表,支持按字段排序、按条件筛选、按需返回字段(masks);不传分页参数时返回全部(先筛选、排序后再截断)python <RUN_PY> etf-list-paginated
038etf-ohlcs查询单只 ETF OHLC K 线GETGET /gateway/api/v1/market/data/daec/history/ohlcsetf, sinceetf, since, until, interval, adjust获取 A 股指定 ETF 在指定日期区间、周期的 K 线(开高低收、成交量、成交额),支持日/周/月线与前/后复权python <RUN_PY> etf-ohlcs --etf 510050.XSHG --since 20240101 --until 20240131
039etf-pcf-download下载指定 PCF 文件GETGET /gateway/api/v1/market/data/etf-pcf/etf-pcfs/{filename}filenamefilename, output根据 PCF 文件名下载对应 XML 文件内容,用于 ETF 申购赎回清单的详细数据python <RUN_PY> etf-pcf-download --filename pcf_159003_20260309.xml > pcf_159003_20260309.xml
040etf-pcfs获取指定日期 ETF PCF 列表GETGET /gateway/api/v1/market/data/etf-pcf/etf-pcfsdatedate, page, page_size获取指定交易日 ETF 申购赎回清单(PCF)文件列表,支持分页,数据来自外部 PCF 服务python <RUN_PY> etf-pcfs --date 20260309
041etf-pre-single查询单只 ETF 盘前数据GETGET /gateway/api/v1/market/data/etf-pre-singlesymbolsymbol, date根据标的代码查询单只 ETF 的盘前信息(申购赎回单位、净值、现金差额等);不传 date 时使用当日(CST);未找到或报错时接口返回相应错误信息python <RUN_PY> etf-pre-single --symbol 510300.XSHG
042etf-prices查询单只 ETF 分时价格(一分钟级别)GETGET /gateway/api/v1/market/data/daec/history/pricesetf, since, since_ts_msetf, since, since_ts_ms获取 A 股指定 ETF 在指定时间范围内的分时数据(一分钟一根),用于分时图、当日/多日走势;每条含该分钟的价格、成交量、成交额、均价、时间戳;支持从今天起、从五日前起、从 N 个交易日前起或从指定毫秒时间戳起python <RUN_PY> etf-prices --etf 510050.XSHG --since TODAY
044fund-basicinfo-single-fund查询指定基金基础信息未知未提取institution_codeinstitution_codeGet basic information of a specific fund by institution code. Use when user asks about fund details, 基金基本信息, 基金管理人, 基金经理, 基金类型, 投资目标.python <RUN_PY> fund-basicinfo-single-fund --institution-code 000001
045fund-cal-return-single-fund-specific-period查询指定基金在指定区间的累计收益率未知未提取institution_code, cal_typeinstitution_code, cal_typeGet cumulative return time series for a specific fund over a given period. Use when user asks about 基金累计收益率, 近1年/近3个月收益, YTD收益, 基金收益曲线.python <RUN_PY> fund-cal-return-single-fund-specific-period --institution-code 159619 --cal-type 1Y
046fund-nav-single-fund-paginated查询指定基金的净值历史(分页)未知未提取institution_codeinstitution_code, page, page_sizeGet paginated NAV history for a specific fund. Use when user asks about 基金净值, 单位净值, 累计净值, 日增长率, 基金净值历史.python <RUN_PY> fund-nav-single-fund-paginated --institution-code 000001 --page 1 --page-size 50
047fund-overview-all-funds-paginated查询所有基金概览信息(分页)未知未提取page, page_sizeGet paginated overview information for all funds. Use when user asks about 基金概览, 所有基金信息, fund overview list, 基金列表概况.python <RUN_PY> fund-overview-all-funds-paginated --page 1 --page-size 20
048fund-support-symbols-all-funds-paginated查询所有支持基金的标的列表(分页)未知未提取page, page_sizeGet paginated list of all supported fund symbols with code and name. Use when user asks about 支持的基金列表, 基金代码清单, 所有基金标的.python <RUN_PY> fund-support-symbols-all-funds-paginated --page 1 --page-size 20

FTSHARE SKILL CATEGORY 04

港股 / 港股通 / AH

10 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
007company-hk查询港股公司介绍GET/gateway/api/v1/market/data/hk/company-hktrade_codetrade_code按港股交易代码查询该公司介绍,含公司名称、成立日期、注册资本、法人代表、公司简介、主营业务等python <RUN_PY> company-hk --trade_code 00700.HK
050hk-balance对外接口-查询港股资产负债表GETGET /gateway/api/v1/market/data/hk/hk-balance-{gene\|bank\|insur}trade_code, year, report_type, company_type, start_date, end_date, page, page_size, all查询港股上市公司资产负债表(时点数据)。gene 一般企业 150 字段、bank 银行 84 字段、insur 保险 85 字段。用 --company_type 选择。python <RUN_PY> hk-balance
051hk-candlesticks查询港股 K 线GET/gateway/api/v1/market/data/hk/hk-candlestickstrade_code, interval_unit, until_datetrade_code, interval_unit, until_date, since_date, adjust_kind, interval_value, limit按港股代码查询日/月/季/年 K 线(来源:hkshareeodprices);请求与响应中的代码均为 **5 位数字 + .HK**,服务端会转换为库内 4 位 Wind 代码查询python <RUN_PY> hk-candlesticks --trade-code 00700.HK --interval-unit day --until-date 2026-03-24 --since-date 2026-03-01 --limit 20
052hk-cashflow对外接口-查询港股现金流量表GETGET /gateway/api/v1/market/data/hk/hk-cashflowstock_code, year, report_type, start_date, end_date, page, page_size, all查询港股上市公司现金流量表。**注意:本接口用 stock_code 作为股票代码参数(与利润表/资产负债表的 trade_code 不同)**。数据来源 ClickHouse hkstk_cashflow。python <RUN_PY> hk-cashflow
053hk-income对外接口-查询港股利润表GETGET /gateway/api/v1/market/data/hk/hk-income-{gene\|bank\|insur}trade_code, year, report_type, company_type, start_date, end_date, page, page_size, all查询港股上市公司利润表。一般企业 gene、银行业 bank、保险业 insur 字段不同,用 --company_type 选择。数据来源 ClickHouse hkstk_income_gene/bank/insur。python <RUN_PY> hk-income
054hk-valuatnanalyd查询港股估值分析(分页)GET/gateway/api/v1/market/data/hk/hk-valuatnanalydtrade_code, page, page_size分页查询 hkstk_valuatnanalyd 估值分析明细;可按 trade_code 过滤单票,不传则返回全市场分页数据python <RUN_PY> hk-valuatnanalyd --trade_code 00700.HK --page 1 --page_size 20
055hk-view查询港股基础视图GET/gateway/api/v1/market/data/hk/hk-viewhk_codehk_code按港股代码查询单票基础视图信息,含证券简称、板块、上市状态、股本结构、港股市值及主要估值指标等python <RUN_PY> hk-view --hk_code 00700.HK
056hsi-daily-weight对外接口-查询恒生指数成分权重GETGET /gateway/api/v1/market/data/hk/hsi-daily-weighttrade_date, start_date, end_date, index_slug, stock_code, page, page_size, all查询恒生系列指数成份股的权重数据,支持按交易日、日期范围、指数代码、股票代码过滤。数据来源 MySQL xz02.base_data.hsi_daily_weight。python <RUN_PY> hsi-daily-weight
075northbound查询北向资金交易数据GET/gateway/api/v1/market/data/northbounddatedate查询指定交易日北向资金(沪股通、深股通)交易汇总数据python <RUN_PY> northbound --date 20250101
080southbound查询南向资金交易数据GET/gateway/api/v1/market/data/southbounddatedate查询指定交易日南向资金(港股通沪、港股通深)交易汇总数据python <RUN_PY> southbound --date 20250101

FTSHARE SKILL CATEGORY 05

A 股资金 / 估值 / 热度 / 短线

14 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
013eastmoney-market-valuation查询东财市场日估值GET/gateway/api/v1/market/data/eastmoney-market-valuationmarket_code, trade_date, start_date, end_date, page, page_size, all查询 A 股主要市场指数(上证指数、沪深300、深证成指、创业板指、科创50、北证50)的每日估值数据,包括市盈率、总市值、流通市值、收盘点位等;支持单日、区间查询python <RUN_PY> eastmoney-market-valuation --market_code 000300 --page 1 --page_size 10
014eastmoney-stock-valuation查询东财个股日估值GET/gateway/api/v1/market/data/eastmoney-stock-valuationsymbol, trade_date, start_date, end_date, page, page_size, all查询全部 A 股个股的每日估值数据,包括市盈率(TTM/LYR)、市净率、市现率、市销率、PEG、总市值、流通市值、收盘价等;支持单票单日、单票历史区间及全市场查询python <RUN_PY> eastmoney-stock-valuation --symbol 000001 --page 1 --page_size 10
067limit-down-pool查询当日跌停股池GETGET /gateway/api/v1/market/data/limit-down-pool查询当前交易日正在跌停的 A 股股票列表(limit_down_enter 非空的股票),包含封板时间、翘板次数、封单资金等字段python <RUN_PY> limit-down-pool
068limit-up-break-pool查询当日炸板股池GETGET /gateway/api/v1/market/data/limit-up-break-pool查询当前交易日涨停过且炸板过的 A 股股票列表(limit_up_enter 且 limit_up_break 均非空)python <RUN_PY> limit-up-break-pool
069limit-up-pool查询当日涨停股池GETGET /gateway/api/v1/market/data/limit-up-pool查询当前交易日正在涨停的 A 股股票列表(limit_up_enter 非空的股票),包含封板时间、炸板次数等字段python <RUN_PY> limit-up-pool
070limit-up-pool-yesterday查询昨日涨停股池GETGET /gateway/api/v1/market/data/limit-up-pool-yesterday查询上一个交易日涨停的 A 股股票列表python <RUN_PY> limit-up-pool-yesterday
083stock-capital-flows对外接口-查询股票资金流向GETGET /gateway/api/v1/market/data/stock-capital-flowsdate, time, symbol, page, page_size, all分页查询 A 股股票资金流向;不传 date 返回当前实时快照,传入 date 可指定 15 分钟切片(默认 time=1530 日终)。仅返回 A 股(不含 ETF/指数),按主力净流入降序排列。python <RUN_PY> stock-capital-flows
086stock-comment-desire市场参与意愿GETGET /gateway/api/v1/market/data/stock-comment/desiresymbolsymbol查询指定股票的市场参与意愿及 5 日均值变化python <RUN_PY> stock-comment-desire --symbol 000001
087stock-comment-focus市场热度用户关注指数GETGET /gateway/api/v1/market/data/stock-comment/focussymbolsymbol查询指定股票的用户关注指数、排名及变动情况python <RUN_PY> stock-comment-focus --symbol 000001
088stock-comment-index千股千评综合诊断主表GETGET /gateway/api/v1/market/data/stock-comment/index查询东方财富千股千评综合诊断主表,获取全市场股票的综合评分与排名python <RUN_PY> stock-comment-index
089stock-comment-org-participate机构参与度GETGET /gateway/api/v1/market/data/stock-comment/org-participatesymbolsymbol查询指定股票的历史机构参与度走势python <RUN_PY> stock-comment-org-participate --symbol 000001
090stock-comment-score综合评价历史评分GETGET /gateway/api/v1/market/data/stock-comment/scoresymbolsymbol查询指定股票的历史综合评分走势python <RUN_PY> stock-comment-score --symbol 000001
110stock-rank-eastmoney东方财富排行榜GETGET /gateway/api/v1/market/data/eastmoney-rankrank_group, market, trade_date查询东方财富的股票人气榜、飙升榜,支持 A 股/港股/美股python <RUN_PY> stock-rank-eastmoney --rank-group hot --market A
111stock-rank-xueqiu雪球排行榜GETGET /gateway/api/v1/market/data/xueqiu-rankrank_group, period, trade_date, page, page_size查询雪球平台的股票关注度、讨论热度、交易热度排行榜python <RUN_PY> stock-rank-xueqiu --rank-group follow --period 7d --page 1 --page-size 20

FTSHARE SKILL CATEGORY 06

美股

7 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
015eastmoney-us-stock-daily-ohlc查询东财美股历史日 K 线GET/gateway/api/v1/market/data/eastmoney-us-stock-daily-ohlc--stock_codestock_code, start_date, end_date, page, page_size, all查询东财美股历史日 K 线;有日期范围时按 3 天窗口分批请求,无日期范围时全量拉取python <RUN_PY> eastmoney-us-stock-daily-ohlc --stock_code AAL --page 1 --page_size 10
016eastmoney-us-stock-latest-ohlc查询东财美股最新日 K 线GET/gateway/api/v1/market/data/eastmoney-us-stock-latest-ohlcstock_code, page, page_size, all分页查询东财美股最新一根日 K 线(最后一行 OHLC);可按股票代码过滤,不传则返回全部美股python <RUN_PY> eastmoney-us-stock-latest-ohlc --stock_code ADV --page 1 --page_size 20
033economic-us-economic-by-type按类型查询美国经济指标(统一接口)GETGET /gateway/api/v1/market/data/economic/us-economictypetype通过参数 type 指定指标类型,获取对应美国经济指标的时间序列(时间、前值、现值、发布日期);支持 16 类指标python <RUN_PY> economic-us-economic-by-type
116us-balance对外接口-查询美股资产负债表GETGET /gateway/api/v1/market/data/us/us-balancestock_codestock_code, period, report_type, start_date, end_date, page, page_size, all查询美股上市公司资产负债表(资产、负债、所有者权益各科目),按**财年 + 报告期**组合查询。数据来源 ClickHouse basedata.usstk_balance。python <RUN_PY> us-balance
117us-basic对外接口-查询美股列表GETGET /gateway/api/v1/market/data/us/us-basicstock_code, page, page_size, all查询美股基础信息(代码、中英文名称、上市/退市日期),支持全量分页或精确查单只。数据来源 ClickHouse basedata.usstk_securityinfo,约 5315 只。python <RUN_PY> us-basic
118us-cashflow对外接口-查询美股现金流量表GETGET /gateway/api/v1/market/data/us/us-cashflowstock_codestock_code, period, report_type, start_date, end_date, page, page_size, all查询美股上市公司现金流量表(经营/投资/筹资活动现金流净额、折旧摊销、资本支出等),按**财年 + 报告期**组合查询。数据来源 ClickHouse basedata.usstk_cashflow。python <RUN_PY> us-cashflow
119us-income对外接口-查询美股利润表GETGET /gateway/api/v1/market/data/us/us-incomestock_codestock_code, period, report_type, start_date, end_date, page, page_size, all查询美股上市公司利润表(营收、成本、毛利、研发费用、净利润、EPS 等),按**财年 + 报告期**组合查询。数据来源 ClickHouse basedata.usstk_income。python <RUN_PY> us-income

FTSHARE SKILL CATEGORY 07

宏观经济

15 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
018economic-china-cpi-monthly居民消费价格指数(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-cpi获取中国居民消费价格指数 CPI 月度汇总数据,含全国/城市/农村当月值及同比、环比等python <RUN_PY> economic-china-cpi-monthly
019economic-china-credit-loans-monthly信贷数据(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-credit-loans获取中国信贷数据月度汇总,含新增信贷、同比、环比、当年累计及累计同比等python <RUN_PY> economic-china-credit-loans-monthly
020economic-china-customs-trade-monthly海关进出口增减情况(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-customs-trade获取中国海关进出口月度数据,含出口/进口当月值、同比、环比及累计与累计同比等python <RUN_PY> economic-china-customs-trade-monthly
021economic-china-fiscal-revenue-monthly中国经济 - 财政收入(月度)未知未提取Get China fiscal revenue monthly data (中国财政收入月度). Use when user asks about 中国财政收入, 财政收入月度, 财政收支, fiscal revenue, 当月同比环比, 累计财政收入.python <RUN_PY> economic-china-fiscal-revenue-monthly
022economic-china-fixed-asset-investment-monthly城镇固定资产投资(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-fixed-asset-investment获取中国城镇固定资产投资月度数据,含本月投资、同比、环比、累计值等python <RUN_PY> economic-china-fixed-asset-investment-monthly
023economic-china-forex-gold-monthly外汇与黄金储备(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-forex-gold获取中国国家外汇储备与黄金储备月度数据,含当月值、同比、环比等python <RUN_PY> economic-china-forex-gold-monthly
024economic-china-gdp-quarterly中国经济 - GDP(季度)未知未提取Get China GDP quarterly data (中国 GDP 季度数据). Use when user asks about 中国 GDP, 季度 GDP, 三次产业, 中国经济 GDP, China GDP quarterly, GDP 同比, 第一二三产业.python <RUN_PY> economic-china-gdp-quarterly
025economic-china-industrial-added-value-monthly中国工业增加值增长(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-industrial-added-value获取中国工业增加值月度数据,含同比增长、累计同比增长等python <RUN_PY> economic-china-industrial-added-value-monthly
026economic-china-lpr-monthlyLPR 贷款市场报价利率(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-lpr获取中国 LPR 1 年期与 5 年期利率按日期汇总数据python <RUN_PY> economic-china-lpr-monthly
027economic-china-money-supply-monthly货币供应量(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-money-supply获取中国 M0、M1、M2 货币供应量月度数据,含当月值、同比、环比等python <RUN_PY> economic-china-money-supply-monthly
028economic-china-pmi-monthlyPMI 数据(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-pmi获取中国制造业与非制造业 PMI 月度数据,含当月值、同比、环比等python <RUN_PY> economic-china-pmi-monthly
029economic-china-ppi-monthlyPPI 数据(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-ppi获取中国工业品出厂价格指数 PPI 月度数据,含当月值、同比、环比及当年累计平均等python <RUN_PY> economic-china-ppi-monthly
030economic-china-reserve-ratio-monthly准备金率(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-reserve-ratio获取中国人民币存款准备金率月度数据,含大型与中小型金融机构准备金率等python <RUN_PY> economic-china-reserve-ratio-monthly
031economic-china-retail-sales-monthly社会消费品零售总额(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-retail-sales获取中国社会消费品零售总额月度数据,含当月值、同比、累计及累计同比等python <RUN_PY> economic-china-retail-sales-monthly
032economic-china-tax-revenue-monthly全国税收收入(月度汇总计算结果)GETGET /gateway/api/v1/market/data/economic/china-tax-revenue获取中国全国税收收入月度数据,含当月值、累计值、累计同比、月度环比、月度同比等python <RUN_PY> economic-china-tax-revenue-monthly

FTSHARE SKILL CATEGORY 08

时间 / 日历 / 新闻

3 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
043financial-calendar查询财经日历GETGET /gateway/api/v1/market/data/finance/financial-calendarstart_date, end_datestart_date, end_date按日期范围查询华尔街见闻与百度财经日历数据(宏观数据、IPO、财报时间、交易提醒等)python <RUN_PY> financial-calendar --start-date 2026-05-01 --end-date 2026-05-07
049get-nth-trade-date获取第 N 个交易日GETGET /gateway/api/v1/market/data/time/get-nth-trade-datenn获取当前日期的前 N 个交易日,用于计算交易日相关逻辑;查「近 N 天」K 线时先调用本接口得到起止交易日,再转为毫秒时间戳请求 K 线接口python <RUN_PY> get-nth-trade-date --n 5
078semantic-search-news语义搜索新闻GETGET /gateway/api/v1/market/data/semantic-search-newsqueryquery, limit, year, start_time, end_time根据搜索文字进行语义搜索,返回相关新闻列表;数据仅支持查询**当年**、**最近半个月**内的新闻python <RUN_PY> semantic-search-news --query 人工智能

FTSHARE SKILL CATEGORY 09

A 股股东 / 股权 / 公司事件

12 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
071major-contract-by-date按公告日期范围查询重大合同GETGET /gateway/api/v1/market/data/corporate/contractstart_date, end_datestart_date, end_date按公告日期范围查询 A 股上市公司重大合同,包括合同方、金额、收入影响等python <RUN_PY> major-contract-by-date --start_date 20260526 --end_date 20260526
072major-contract-by-symbol按股票代码查询重大合同GETGET /gateway/api/v1/market/data/corporate/contract/by-symbolsymbolsymbol, page, page_size查询指定股票的所有重大合同信息,按公告日期降序排列,支持分页python <RUN_PY> major-contract-by-symbol --symbol 300500
073major-contract-summary近一年个股重大合同汇总GETGET /gateway/api/v1/market/data/corporate/contract/summarypage, page_size近一年各股票重大合同数量与金额汇总排名,按合同总额降序,支持分页python <RUN_PY> major-contract-summary
076pledge-detail查询单票股权质押个股详细信息GET/gateway/api/v1/market/data/pledge/pledge-detailstock_codestock_code, page, page_size获取 A 股上市公司单只股票所有报告期的股权质押详细信息,支持沪深京股票,支持分页查询python <RUN_PY> pledge-detail --stock_code 603323.SH
077pledge-summary查询所有期股权质押总揽数据GET/gateway/api/v1/market/data/pledge/pledge-summary获取 A 股市场所有报告期的股权质押总揽数据,包括质押公司数量、质押笔数、质押总股数、质押总市值、沪深300指数等信息,支持沪深京股票python <RUN_PY> pledge-summary
079shareholder-meeting查询股东大会GETGET /gateway/api/v1/market/data/corporate/meetingpage, page_size查询 A 股上市公司股东大会召开信息,包括会议日期、股权登记日、提案等,支持分页python <RUN_PY> shareholder-meeting
096stock-holder-ften查询单票所有公告期 10 大流通股东GET/gateway/api/v1/market/data/holder/stock-holder-ftenstock_codestock_code获取 A 股上市公司单只股票所有公告期的十大流通股东信息,支持沪深京股票python <RUN_PY> stock-holder-ften --stock_code 603323.SH
097stock-holder-nums查询单票所有公告期股东人数信息GET/gateway/api/v1/market/data/holder/stock-holder-numsstock_codestock_code获取 A 股上市公司单只股票所有公告期的股东人数信息,支持沪深京股票python <RUN_PY> stock-holder-nums --stock_code 603323.SH
098stock-holder-ten查询单票所有公告期 10 大股东GET/gateway/api/v1/market/data/holder/stock-holder-tenstock_codestock_code获取 A 股上市公司单只股票所有公告期的十大股东信息,支持沪深京股票python <RUN_PY> stock-holder-ten --stock_code 603323.SH
113stock-share-chg查询单票股东增减持GET/gateway/api/v1/market/data/holder/stock-share-chgstock_codestock_code, page, page_size获取 A 股上市公司单只股票所有报告期的股东增减持信息,支持沪深京股票,支持分页查询python <RUN_PY> stock-share-chg --stock_code 603323.SH
114stock-unlock-by-date按解禁日期范围查询限售解禁GETGET /gateway/api/v1/market/data/unlock/stock-unlock-by-datestart_date, end_datestart_date, end_date, page, page_size按解禁日期范围分页查询限售解禁批次及股东明细python <RUN_PY> stock-unlock-by-date --start_date 2025-06-01 --end_date 2025-06-30
115stock-unlock-by-stock按证券代码查询限售解禁GETGET /gateway/api/v1/market/data/unlock/stock-unlockstock_codestock_code, page, page_size按证券代码分页查询限售解禁批次及股东明细python <RUN_PY> stock-unlock-by-stock --stock_code 000001

FTSHARE SKILL CATEGORY 10

其他

6 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
074margin-trading-details获取融资融券明细GET / POST/gateway/api/v1/market/data/margin-trading-detailspage, page_sizepage, date, page_size, all获取 A 股融资融券明细列表,按融资净买入额降序排列,支持分页查询python <RUN_PY> margin-trading-details --page 1 --page_size 20
091stock-goodwill-detail查询个股商誉明细GETGET /gateway/api/v1/market/data/goodwill/stock-detaildatedate查询个股的商誉规模、商誉占净资产比例、净利润同比变化等明细数据python <RUN_PY> stock-goodwill-detail
092stock-goodwill-impairment查询个股商誉减值明细GETGET /gateway/api/v1/market/data/goodwill/stock-impairmentdatedate查询存在商誉减值的个股数据,包含减值金额、减值占净利润比例等字段python <RUN_PY> stock-goodwill-impairment
093stock-goodwill-industry查询行业商誉GETGET /gateway/api/v1/market/data/goodwill/industrydatedate查询各行业的商誉规模、商誉占净资产比例、净利润规模等汇总数据python <RUN_PY> stock-goodwill-industry
094stock-goodwill-market-overview查询A股商誉市场概况GETGET /gateway/api/v1/market/data/goodwill/market-overview查询 A 股全市场商誉历史概况,包含商誉规模、减值金额、占净资产/净利润比例等汇总指标python <RUN_PY> stock-goodwill-market-overview
095stock-goodwill-predict查询商誉减值预期明细GETGET /gateway/api/v1/market/data/goodwill/predictdatedate查询商誉减值业绩预告数据,包含预测净利润上下限、业绩变动幅度、上年同期净利润等字段python <RUN_PY> stock-goodwill-predict

FTSHARE SKILL CATEGORY 11

A 股财报 / 业绩

10 sub-skills
#Sub-skill接口标题方法外部接口必填参数全部参数支持全量适用场景示例命令
081stock-balance-all-stocks-specific-period查询单报告期所有票资产负债表GETGET /gateway/api/v1/market/data/finance/balanceyear, report_type, page, page_sizeyear, report_type, page, page_size获取 A 股指定报告期所有股票的资产负债表,支持沪深京股票,支持分页python <RUN_PY> stock-balance-all-stocks-specific-period
082stock-balance-single-stock-all-periods查询单票所有报告期资产负债表GETGET /gateway/api/v1/market/data/finance/balancestock_codestock_code获取 A 股上市公司单只股票所有报告期的资产负债表,支持沪深京股票python <RUN_PY> stock-balance-single-stock-all-periods
084stock-cashflow-all-stocks-specific-period查询单报告期所有票现金流量表GETGET /gateway/api/v1/market/data/finance/cashflowyear, report_type, page, page_sizeyear, report_type, page, page_size获取 A 股指定报告期所有股票的现金流量表,支持沪深京股票,支持分页python <RUN_PY> stock-cashflow-all-stocks-specific-period
085stock-cashflow-single-stock-all-periods查询单票所有报告期现金流量表GETGET /gateway/api/v1/market/data/finance/cashflowstock_codestock_code获取 A 股上市公司单只股票所有报告期的现金流量表,支持沪深京股票python <RUN_PY> stock-cashflow-single-stock-all-periods
099stock-income-all-stocks-specific-period查询单报告期所有票利润表GETGET /gateway/api/v1/market/data/finance/incomeyear, report_type, page, page_sizeyear, report_type, page, page_size获取 A 股指定报告期所有股票的利润表,支持沪深京股票,支持分页python <RUN_PY> stock-income-all-stocks-specific-period
100stock-income-single-stock-all-periods查询单票所有报告期利润表GETGET /gateway/api/v1/market/data/finance/incomestock_codestock_code获取 A 股上市公司单只股票所有报告期的利润表,支持沪深京股票python <RUN_PY> stock-income-single-stock-all-periods
104stock-performance-express-all-stocks-specific-period查询指定报告期全市场业绩快报(分页)未知未提取year, report_typeyear, report_type, page, page_sizeGet performance express (业绩快报) for all stocks in a specific reporting period. Use when user asks about 指定报告期业绩快报, 全市场业绩快报, all stocks performance express for a specific year and period.python <RUN_PY> stock-performance-express-all-stocks-specific-period
105stock-performance-express-single-stock-all-periods查询单只股票所有报告期业绩快报(分页)未知未提取stock_codestock_code, page, page_sizeGet all periods' performance express (业绩快报) for a single stock. Use when user asks about 业绩快报, 单只股票业绩快报, stock performance express, earnings express.python <RUN_PY> stock-performance-express-single-stock-all-periods
106stock-performance-forecast-all-stocks-specific-period查询指定报告期全市场业绩预告(分页)未知未提取year, report_typeyear, report_type, page, page_sizeGet performance forecast (业绩预告) for all stocks in a specific reporting period. Use when user asks about 指定报告期业绩预告, 全市场业绩预告, all stocks performance forecast for a specific year and period.python <RUN_PY> stock-performance-forecast-all-stocks-specific-period
107stock-performance-forecast-single-stock-all-periods查询单只股票所有报告期业绩预告(分页)未知未提取stock_codestock_code, page, page_sizeGet all periods' performance forecast (业绩预告) for a single stock. Use when user asks about 业绩预告, 单只股票业绩预告, stock performance forecast, earnings forecast.python <RUN_PY> stock-performance-forecast-single-stock-all-periods