资产负债表
上市公司资产负债表,按报告期提供时点数据,涵盖流动与非流动资产(货币资金、应收款项、存货、固定资产等)、各类负债及股东权益。为期末时点快照,随季报/年报披露更新。适用于偿债能力、资产结构与资本充足度分析,亦是杠杆与营运资本类指标的计算基础。所有金额单位为人民币元。
GET /v2/financials/balance-sheet请求参数
参数
类型
必填
说明
symbol
string
否
股票代码,如 000001.SZ
start_date
string
否
开始日期 (YYYYMMDD)
end_date
string
否
结束日期 (YYYYMMDD)
period
string
否
报告期,YYYYMMDD,如 20231231
ann_date
string
否
公告日期,YYYYMMDD
report_type
string
否
报告类型
comp_type
string
否
公司类型:1工商业/2银行/3保险/4证券
关键返回字段
字段
说明
total_assets
总资产
total_liab
总负债
total_hldr_eqy_exc_min_int
归属母公司股东权益
money_cap
货币资金
accounts_receiv / inventories
应收账款 / 存货
goodwill / intan_assets
商誉 / 无形资产
接口示例
cURL
curl -H "X-API-Key: YOUR_KEY" \
"https://asharehub.com/v2/financials/balance-sheet?symbol=000001.SZ"
Python SDK
from asharehub import AShareHub
client = AShareHub(api_key="YOUR_KEY")
df = client.balance_sheet(symbol="000001.SZ")
print(df.head())
数据样例
返回 pandas.DataFrame
| symbol | ann_date | f_ann_date | end_date | report_type | comp_type | total_cur_assets | money_cap | notes_receiv | accounts_receiv | … +21 |
|---|---|---|---|---|---|---|---|---|---|---|
| 000001.SZ | 20260425 | 20260425 | 20260331 | 1 | 2 | — | — | — | — | … |
| 000001.SZ | 20260321 | 20260321 | 20251231 | 1 | 2 | — | — | — | — | … |
| 000001.SZ | 20251025 | 20251025 | 20250930 | 1 | 2 | — | — | — | — | … |
Esc