Tous les jeux de données

Monthly exchange rates

The monthly average exchange rates for various foreign currencies (either currently or historically published) expressed as one unit of the foreign currency converted into Canadian dollars. These rates are typically published on the last business day of each month by 16:30 (ET); if the last business day of the month is a Bank of Canada holiday, the monthly average exchange rates are typically published on the first business day of the following month by 16:30 (ET). All Bank of Canada exchange rates are indicative rates only, obtained from averages of aggregated price quotes from financial institutions.

Source: Bank of Canada Valet2,780 lignesMis à jour: 21/09/2026
exchange-ratesforexcurrencycanadafinance

Qualité

100

Attribution

Bank of Canada (Valet web service)

Schéma

ColonneTypeDescription
datestringDate of the observation, as published by the Bank of Canada (the observation's 'd' field).
series_idstringValet series name (for example 'BD.CDN.2YR.DQ.YLD'); the unique identifier of the series in the Bank of Canada Valet API.
series_labelstringHuman-readable series label published by the Bank of Canada in the series detail.
valuefloatObserved value for the series and date (the 'v' field of the Valet observation record). Units follow the series definition in the dataset description. Missing observations are null.

Exemple de lignes

dateseries_idseries_labelvalue
2017-01-01FXMAUDCADAUD/CAD0.9854
2017-02-01FXMAUDCADAUD/CAD1.0045
2017-03-01FXMAUDCADAUD/CAD1.0204
2017-04-01FXMAUDCADAUD/CAD1.0121
2017-05-01FXMAUDCADAUD/CAD1.0116

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/boc_valet/boc_monthly_exchange_rates" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/boc_valet/boc_monthly_exchange_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/boc_valet/boc_monthly_exchange_rates

Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.