</>

担保明细通达信

查询担保方、被担保方、担保金额和担保期限。

查询担保方、被担保方、担保金额和担保期限。

输入参数

参数类型必填说明默认值
codestring股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。
periodstring报告期;不传自动取最新可用报告期。
countinteger返回条数,默认 20;该接口单期可能有大量明细。20
参数示例
# 单个标的
client.call("stock_governance_guarantees_tdx", code="000034.SZ", count=5)

# 批量请求多个标的
client.call("stock_governance_guarantees_tdx", code=["000034.SZ", "000001.SZ"], count=5)

返回字段

字段类型说明
instrument_idstringAxData 统一证券代码,例如 000001.SZ。
symbolstring交易所原始六位代码。
report_perioddate报告期。
guarantorstring担保方。
guaranteed_partystring被担保方。
amountnumber担保金额。
currencystring币种。
guarantee_typestring担保类型。
is_completedstring是否履行完毕。
is_related_partystring是否关联交易。
actual_datedate实际发生日。
termnumber担保期限,源端原值,可能为数字或空。

调用示例

Python SDK

import axdata as ax

client = ax.AxDataClient()
rows = client.call(
    "stock_governance_guarantees_tdx",
    code='000001.SZ',
    count=20,
)

HTTP API

POST /v1/request/stock_governance_guarantees_tdx
Content-Type: application/json

{
  "params": {
    "code": "000001.SZ",
    "count": 20
  }
}

真实样例快照

展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。

请求参数

{
  "code": "000001.SZ",
  "count": 20
}

响应样例

instrument_idsymbol
000001.SZ000001

生成时间:2026-07-06T16:54:55+00:00