Central bank policy rates (monthly, 49 economies)
Monthly end-of-period central bank policy (target) rates published by the BIS, from 1945 to the latest month. Bank for International Settlements, BIS Data Portal.
Source: Bank for International Settlements25,096 lignesMis à jour: 22/09/2026
monetary-policypolicy-ratesinterest-ratescentral-banks
Qualité
97
Attribution
Bank for International Settlements
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | string | Observation period (the TIME_PERIOD column of the BIS SDMX-CSV response). Monthly series use YYYY-MM; quarterly series use YYYY-QN, stored as the first day of the quarter. |
| series_id | string | BIS area code, e.g. 'US': the unique identifier of the series in the BIS Data Portal. |
| series_label | string | English economy name from the BIS's own CL_BIS_GL_REF_AREA codelist, e.g. 'United States', 'Euro area'. |
| value | float | Observed policy rate for the economy and month (the OBS_VALUE column). Unit 368: per cent per annum; monthly values are end-of-period. |
Exemple de lignes
| date | series_id | series_label | value |
|---|---|---|---|
| 1993-04-01 | AR | Argentina | 0.63 |
| 1993-05-01 | AR | Argentina | 0.11 |
| 1993-06-01 | AR | Argentina | 0.53 |
| 1993-07-01 | AR | Argentina | 0.36 |
| 1993-08-01 | AR | Argentina | 0.25 |
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/bis/bis_central_bank_policy_rates" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/bis/bis_central_bank_policy_rates").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/bis/bis_central_bank_policy_rates
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.