All datasets

Foreign exchange rates, United States

Foreign exchange rates for the United States dollar. Statistics Canada table 10-10-0087-01.

Source: Government of Canada Open Data160 rowsUpdated: 9/20/2026License: OGL-Canada-2.0
forexexchange-ratesstatcangovernment-of-canada

Quality

100

Attribution

Contains information licensed under the Open Government Licence – Canada

Schema

ColumnTypeDescription
ref_datestringReference date — the time period the observation refers to (Statistics Canada table field REF_DATE).
geostringGeography the observation covers (Statistics Canada table field GEO).
type_of_exchange_rate_united_statesstring
uomstringUnit of measure for the estimate (Statistics Canada table field UOM).
uom_idintegerUnit of measure identifier (Statistics Canada table field UOM_ID).
scalar_factorstringScalar factor applied to the value, e.g. units, thousands or millions (Statistics Canada table field SCALAR_FACTOR).
scalar_idintegerScalar factor identifier (Statistics Canada table field SCALAR_ID).
vectorstringVector number — Statistics Canada's unique identifier for the time series (table field VECTOR).
coordinatefloatTable coordinate locating the estimate within the source table (Statistics Canada table field COORDINATE).
valuefloatEstimate value as published in the Statistics Canada table.
decimalsintegerNumber of decimals published for the estimate (Statistics Canada table field DECIMALS).

Sample rows

ref_dategeotype_of_exchange_rate_united_statesuomuom_idscalar_factorscalar_idvectorcoordinatevaluedecimals
1952-01CanadaCanadian cents per United States dollar, spot rate adjusted, by working daysCents55units 0v376991.1100.062
1952-04CanadaCanadian cents per United States dollar, spot rate adjusted, by working daysCents55units 0v376991.198.142
1952-07CanadaCanadian cents per United States dollar, spot rate adjusted, by working daysCents55units 0v376991.196.352
1952-10CanadaCanadian cents per United States dollar, spot rate adjusted, by working daysCents55units 0v376991.197.022
1953-01CanadaCanadian cents per United States dollar, spot rate adjusted, by working daysCents55units 0v376991.197.712

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/ckan_canada/fx_rates_us" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/ckan_canada/fx_rates_us").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/ckan_canada/fx_rates_us

Tip: fetch /llms.txt for the full machine-readable catalog.