All datasets

U.S. Dollars to Euro Spot Exchange Rate

data source (https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/h10/%). For questions on FRED functionality, please contact us here (https://fred.stlouisfed.org/contactus/).</p>

Source: FRED (St. Louis Fed)7,225 rowsUpdated: 9/21/2026
forexexchange-ratefred

Quality

99.4

Attribution

Federal Reserve Bank of St. Louis (FRED)

Schema

ColumnTypeDescription
datestring
valuefloat

Sample rows

datevalue
1999-01-041.1812
1999-01-051.176
1999-01-061.1636
1999-01-071.1672
1999-01-081.1554

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/fred/usd_eur_exchange").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/fred/usd_eur_exchange

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