Swiss bond spot interest rates by borrower and maturity, daily
Daily spot interest rates on Swiss franc bond issues from the SNB data portal cube 'rendeiduebd': borrower categories (Swiss Confederation bonds, euro-area government bonds, cantons by rating tier, mortgage bond institutions, commercial banks by rating tier, manufacturing and trade by rating tier) crossed with residual maturity (1 to 30 years), in percent. History from 1988. The SNB publishes this cube monthly (end-of-month data).
Qualité
Attribution
Swiss National Bank (SNB) data portal, data.snb.ch
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | timestamp | Observation date from the provider's time series. Daily cubes (P1D_L) use calendar dates; monthly cubes (P1M) report YYYY-MM, mapped to the first day of the month. |
| series_id | string | Stable machine identifier: snake_case slug of the provider's own dimension codes, in dimension order (e.g. chf_10j). |
| series_label | string | Human-readable series name built only from the provider's own dimension labels (the /dimensions endpoint of the SNB data portal), joined with ' — ', e.g. 'CHF Swiss Confederation bond issues — 10 years'. |
| unit | string | Canonical unit mapped from the provider's metadata.unit string: 'In percent' -> %, 'In CHF millions' -> CHF millions, 'Rates at 11 am. in CHF' -> CHF per foreign currency unit. Note: the SNB's metadata declares 'In percent' for every snbgwdzid series, even though the 'Discount in basis points' label implies basis points and 'Threshold factor' is unitless — that is the provider's own metadata. |
| value | float | Observed value as a number. Observations the provider reports as null are dropped. |
| d0 | string | Provider dimension code for 'Bond categories' (the SNB data portal dimension name). The matching human-readable label is part of series_label. |
| d1 | string | Provider dimension code for 'Maturity' (the SNB data portal dimension name). The matching human-readable label is part of series_label. |
Exemple de lignes
| date | series_id | series_label | unit | value | d0 | d1 |
|---|---|---|---|---|---|---|
| 1988-01-04T00:00:00 | chf_10j | CHF Swiss Confederation bond issues — 10 years | % | 4.015 | CHF | 10J |
| 1988-01-11T00:00:00 | chf_10j | CHF Swiss Confederation bond issues — 10 years | % | 4.015 | CHF | 10J |
| 1988-01-18T00:00:00 | chf_10j | CHF Swiss Confederation bond issues — 10 years | % | 4.025 | CHF | 10J |
| 1988-01-25T00:00:00 | chf_10j | CHF Swiss Confederation bond issues — 10 years | % | 4.085 | CHF | 10J |
| 1988-01-29T00:00:00 | chf_10j | CHF Swiss Confederation bond issues — 10 years | % | 4.092 | CHF | 10J |
Télécharger un échantillon
Téléchargez l'échantillon complet de ce jeu de données (lignes d'exemple, pas le jeu complet).
Utiliser avec un LLM
Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).
cURL
curl "https://datazimuts.com/v1/datasets/snb/snb_bond_yields" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/snb/snb_bond_yields").json()
print(ds["title"], ds["rows"], "rows")
# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
print(row)Point d’accès API: https://datazimuts.com/v1/datasets/snb/snb_bond_yields
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.