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
| Column | Type | Description |
|---|---|---|
| date | string | |
| value | float |
Sample rows
| date | value |
|---|---|
| 1999-01-04 | 1.1812 |
| 1999-01-05 | 1.176 |
| 1999-01-06 | 1.1636 |
| 1999-01-07 | 1.1672 |
| 1999-01-08 | 1.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.