agentsclimarketplace

Pledge summary

Skill FTShare-Lab/FTShare-skills/ftshare-market-data/sub-skills/pledge-summary

查询所有期股权质押总揽数据。当用户需要获取 A 股市场所有报告期的股权质押总揽数据,包括质押公司数量、质押笔数、质押总股数、质押总市值、沪深300指数等信息,支持沪深京股票,或了解所有期股权质押总揽数据时使用。From its SKILL.md

Install
npx -y skills add FTShare-Lab/FTShare-skills --skill pledge-summary

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

3.5 KB, 883 tokens by cl100k_base, as published. Nobody here has run it

查询所有期股权质押总揽数据

接口说明

项目说明
接口名称查询所有期股权质押总揽数据
外部接口/api/v1/market/data/pledge/pledge-summary
请求方式GET
适用场景获取 A 股市场所有报告期的股权质押总揽数据,包括质押公司数量、质押笔数、质押总股数、质押总市值、沪深300指数等信息,支持沪深京股票

请求参数

本接口无需任何请求参数。

执行方式

通过根目录的 run.py 调用(推荐):

python <RUN_PY> pledge-summary

<RUN_PY> 为主 SKILL.md 同级的 run.py 绝对路径,参见主 SKILL.md 的「调用方式」说明。

响应结构

接口直接返回数组,不含分页信息

[
    {
        "trade_date": "2025-09-30",
        "pledge_total_ratio": 0,
        "pledge_company_count": 1234,
        "pledge_deal_count": 5678,
        "pledge_total_shares": 1234567890000.0,
        "pledge_total_market_value": 98765432100000.0,
        "hs300_index": 3456.78,
        "hs300_week_change_ratio": 2.34
    }
]

PledgeMarketSummary 字段说明

字段名类型是否可为空说明单位
trade_dateString报告日期,固定格式为 YYYY-MM-DD-
pledge_total_ratiofloatA 股质押总比例,当前返回 0%
pledge_company_countint质押公司数量(有质押的上市公司数量)
pledge_deal_countint质押笔数(所有质押交易的总笔数)
pledge_total_sharesfloat质押总股数(所有质押股票的总股数)
pledge_total_market_valuefloat质押总市值(所有质押股票的总市值)
hs300_indexfloat沪深300指数(报告日期的沪深300指数收盘价)-
hs300_week_change_ratiofloat沪深300周涨跌幅(与一周前对比的涨跌幅)%

注意事项

  • 本接口无需任何参数,直接请求即可
  • 返回值为数组,不含 items / total_pages / total_items 等分页包装
  • pledge_total_ratio 当前接口固定返回 0
  • pledge_total_sharespledge_total_market_value 原始接口以字符串返回,handler 已转为数值输出

What ships with it: 2 files

4.4 KB alongside SKILL.md, 2 of them executable

scripts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.