</>

资产负债表通达信

查询资产负债表。

查询资产负债表。

输入参数

参数类型必填说明默认值
codestring股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。
参数示例
# 单个标的
client.call("stock_financial_statement_tdx", code="000034.SZ")

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

返回字段

字段类型说明
instrument_idstringAxData 统一证券代码,例如 000001.SZ。
symbolstring交易所原始六位代码。
report_perioddate报告期。
cashnumber货币资金。
trading_financial_assetsnumber交易性金融资产。
notes_receivablenumber应收票据。
accounts_receivablenumber应收账款。
current_assetsnumber流动资产合计。
total_assetsnumber资产总计。
short_term_borrowingnumber短期借款。
notes_payablenumber应付票据。
accounts_payablenumber应付账款。
current_liabilitiesnumber流动负债合计。
total_liabilitiesnumber负债合计。
share_capitalnumber实收资本或股本。
capital_reservenumber资本公积金。
undistributed_profitnumber未分配利润。
parent_equitynumber归母权益合计。
total_equitynumber所有者权益合计。
liabilities_and_equitynumber负债和股东权益合计。

调用示例

Python SDK

import axdata as ax

client = ax.AxDataClient()
rows = client.call(
    "stock_financial_statement_tdx",
    code='000001.SZ',
)

HTTP API

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

{
  "params": {
    "code": "000001.SZ"
  }
}

真实样例快照

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

请求参数

{
  "code": "000001.SZ"
}

响应样例

report_periodinstrument_idsymbol
20251231000001.SZ000001

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