Skip to main content

EUR to USD Exchange Rate

EUR (EUR) to USD (USD)

Current exchange rate

1 EUR = 1.1702 USD

As of Apr 30, 2026 · Source: ECB / CBR

30-day low
1.1484
30-day high
1.1797
30-day avg
1.1649
30-day change
+1.76%

Get EUR to USD Rate via API

Fetch the live EUR to USD exchange rate with a single HTTP request. XRates API returns clean JSON with rate data sourced from the European Central Bank (ECB), Central Bank of Russia (CBR) and other official providers.

cURL

curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://xratesapi.com/api/v1/latest?base=EUR&symbols=USD"

Python

import requests
r = requests.get(
"https://xratesapi.com/api/v1/latest",
params={"base": "EUR", "symbols": "USD"},
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
rate = r.json()["rates"]["USD"]

JavaScript (Node.js)

const res = await fetch(
"https://xratesapi.com/api/v1/latest?base=EUR&symbols=USD",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const { rates } = await res.json();
console.log(rates.USD);

EUR to USD Exchange Rate History

Last 30 days of EUR to USD rates. Fetch full historical data via the /api/v1/historical endpoint.

Historical EUR to USD exchange rate for the last 30 days
Date 1 EUR = X USD
Apr 30, 2026 1.1702
Apr 29, 2026 1.1706
Apr 28, 2026 1.168
Apr 27, 2026 1.1749
Apr 24, 2026 1.1712
Apr 23, 2026 1.1694
Apr 22, 2026 1.1733
Apr 21, 2026 1.1767
Apr 20, 2026 1.176
Apr 17, 2026 1.1797
Apr 16, 2026 1.1782
Apr 15, 2026 1.178
Apr 14, 2026 1.1793
Apr 13, 2026 1.1684
Apr 10, 2026 1.1711
Apr 9, 2026 1.1685
Apr 8, 2026 1.1706
Apr 7, 2026 1.1557
Apr 2, 2026 1.1525
Apr 1, 2026 1.1605
Mar 31, 2026 1.1498
Mar 30, 2026 1.1484
Mar 27, 2026 1.1517
Mar 26, 2026 1.1539
Mar 25, 2026 1.1592
Mar 24, 2026 1.1572
Mar 23, 2026 1.1596
Mar 20, 2026 1.1555
Mar 19, 2026 1.1489
Mar 18, 2026 1.15

Frequently Asked Questions

What is the current EUR to USD exchange rate?

As of Apr 30, 2026, 1 EUR (EUR) equals 1.1702 USD (USD). Rates are sourced from the European Central Bank (ECB), Central Bank of Russia (CBR) and other trusted providers.

How can I get EUR to USD rate via API?

Use the XRates REST API endpoint GET /api/v1/latest?base=EUR&symbols=USD with your Bearer token. You'll receive JSON containing the latest EUR to USD rate.

Is the EUR to USD API free?

Yes. XRates API has a free tier with 100 requests per month — no credit card required. Paid plans start at $9/month for 10,000 requests.

How often are EUR to USD rates updated?

Exchange rates are refreshed every 4 hours from the European Central Bank, Central Bank of Russia and other official sources.

Get EUR to USD Rate in Your App

Sign up for free and receive an API key instantly. 100 requests/month, no credit card required.

Get Free API Key