资产负债表通达信
查询资产负债表。
查询资产负债表。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
code | string | 是 | 股票代码:支持 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_id | string | AxData 统一证券代码,例如 000001.SZ。 |
symbol | string | 交易所原始六位代码。 |
report_period | date | 报告期。 |
cash | number | 货币资金。 |
trading_financial_assets | number | 交易性金融资产。 |
notes_receivable | number | 应收票据。 |
accounts_receivable | number | 应收账款。 |
current_assets | number | 流动资产合计。 |
total_assets | number | 资产总计。 |
short_term_borrowing | number | 短期借款。 |
notes_payable | number | 应付票据。 |
accounts_payable | number | 应付账款。 |
current_liabilities | number | 流动负债合计。 |
total_liabilities | number | 负债合计。 |
share_capital | number | 实收资本或股本。 |
capital_reserve | number | 资本公积金。 |
undistributed_profit | number | 未分配利润。 |
parent_equity | number | 归母权益合计。 |
total_equity | number | 所有者权益合计。 |
liabilities_and_equity | number | 负债和股东权益合计。 |
调用示例
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_period | instrument_id | symbol |
|---|---|---|
| 20251231 | 000001.SZ | 000001 |
生成时间:2026-07-06T16:54:55+00:00