USD/EUR Exchange Rate was last reported at 1.1604 USD per EUR as of September 11, 2026. That is down 0.21% from the prior reading of 1.1629 USD per EUR. This indicator is reported Daily and not seasonally adjusted, and is tracked under the Trade category. The next scheduled release is September 21, 2026.
| Date | Value (USD per EUR) |
|---|---|
| Sep 11, 2026 | 1.1604 |
| Sep 10, 2026 | 1.1629 |
| Sep 9, 2026 | 1.1627 |
| Sep 8, 2026 | 1.1627 |
| Sep 4, 2026 | 1.1618 |
| Sep 3, 2026 | 1.1623 |
| Sep 2, 2026 | 1.1592 |
| Sep 1, 2026 | 1.1593 |
| Aug 31, 2026 | 1.1617 |
| Aug 28, 2026 | 1.1598 |
| Date | Value (USD per EUR) |
|---|---|
| Aug 27, 2026 | 1.1654 |
| Aug 26, 2026 | 1.1651 |
| Aug 25, 2026 | 1.1673 |
| Aug 24, 2026 | 1.1665 |
| Aug 21, 2026 | 1.1684 |
| Aug 20, 2026 | 1.1679 |
| Aug 19, 2026 | 1.1664 |
| Aug 18, 2026 | 1.1580 |
| Aug 17, 2026 | 1.1591 |
| Aug 14, 2026 | 1.1581 |
Pull the full history of USD/EUR Exchange Rate into your own models, spreadsheets and apps with the
free Business Quant Economic Data API. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/economic?code=FXUSDEUR&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "FXUSDEUR", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=FXUSDEUR&period=max&api_key=YOUR_API_KEY");
const data = await res.json();