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 lignesMis à jour: 21/09/2026
forexexchange-ratefred
Qualité
99.4
Attribution
Federal Reserve Bank of St. Louis (FRED)
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | string | |
| value | float |
Exemple de lignes
| 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 |
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/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)Point d’accès API: https://datazimuts.com/v1/datasets/fred/usd_eur_exchange
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.