# Shenzhen ETF Creation/Redemption Basket

Daily Shenzhen Stock Exchange ETF creation and redemption basket, including constituent quantities and creation/redemption cash-substitution amounts.

`GET /v2/etf/basket/sz`

## Parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `symbol` | string | No | ETF code, e.g. 159919.SZ |
| `con_symbol` | string | No | Constituent security code |
| `start_date` | string | No | Start date, YYYYMMDD |
| `end_date` | string | No | End date, YYYYMMDD |
| `trade_date` | string | No | Trading date, YYYYMMDD (single-day query) |
| `exchange` | string | No | Exchange code |

## Response Fields

| Field | Type | Description |
| --- | --- | --- |
| `trade_date` | string | Trading date, YYYYMMDD |
| `symbol` | string | ETF code |
| `con_symbol` | string | Constituent security code |
| `con_name` | string | Constituent security name |
| `qty` | integer | Constituent quantity |
| `sub_flag` | string | Cash-substitution flag |
| `cpr` | number | Cash-substitution premium rate |
| `rdr` | number | Redemption cash-substitution discount rate |
| `sub_cc` | number | Creation cash-substitution amount |
| `red_cc` | number | Redemption cash-substitution amount |
| `exchange` | string | Exchange |

## API Example

cURL

```
curl -H "X-API-Key: YOUR_KEY" \
  "https://asharehub.com/v2/etf/basket/sz?symbol=159919.SZ&trade_date=20260731"
```

Python SDK

```
from asharehub import AShareHub

client = AShareHub(api_key="YOUR_KEY")
df = client.etf_sz_basket(symbol="159919.SZ", trade_date="20260731")
print(df.head())
```

## Sample Data

returns a pandas.DataFrame

| trade_date | symbol | con_symbol | con_name | qty | sub_flag | cpr | rdr | sub_cc | red_cc | exchange |
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
| 20260731 | 159919.SZ | 000001.SZ | 平安银行 | 1800 | 1 | 0.10 | 0.10 | — | — | SZSE |
