# Balance Sheet

Balance sheets for listed companies, provided as point-in-time data by reporting period, covering current and non-current assets (cash, receivables, inventory, fixed assets, etc.), liabilities of all types, and shareholders' equity. Each record is a period-end snapshot and updates with quarterly and annual filings. Used for solvency, asset-structure, and capital-adequacy analysis, and serves as the basis for leverage and working-capital metrics. All monetary amounts are in CNY (yuan).

`GET /v2/financials/balance-sheet`

## Parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `symbol` | string | No | Stock code, e.g. 000001.SZ |
| `start_date` | string | No | Start date (YYYYMMDD) |
| `end_date` | string | No | End date (YYYYMMDD) |
| `period` | string | No | Report period YYYYMMDD, e.g. 20231231 |
| `ann_date` | string | No | Announcement date YYYYMMDD |
| `report_type` | string | No | Report type |
| `comp_type` | string | No | Company type: 1 general / 2 bank / 3 insurance / 4 securities |

## Key Response Fields

| Field | Description |
| --- | --- |
| `total_assets` | Total assets |
| `total_liab` | Total liabilities |
| `total_hldr_eqy_exc_min_int` | Equity attributable to parent |
| `money_cap` | Cash and equivalents |
| `accounts_receiv / inventories` | Receivables / inventory |
| `goodwill / intan_assets` | Goodwill / intangible assets |

## API Example

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())
```

## Sample Data

returns a 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 | — | — | — | — | … |
