Convert USD to EUR
US Dollar → Euro
1 USD = 0.876962 EUR(1 EUR = 1.1403 USD)
Currency converter
1 USD =
0.87696 EUR
USD to EUR: last 30 days
Over the last 30 days, 1 USD traded between 0.85822 and 0.87974 EUR, averaging 0.8659 EUR. The USD/EUR rate is up 2.10% since 2026-08-28.
- 30-day high
- 0.87974
- 2026-09-24
- 30-day low
- 0.85822
- 2026-09-09
- 30-day average
- 0.8659
- Days with data: 30
- 30-day change
- +2.10%
- since 2026-08-28
0.87974
0.858222026-08-28 → 2026-09-26
| Date | 1 USD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.87696 | 0.00% |
| 2026-09-25 | 0.87696 | -0.32% |
| 2026-09-24 | 0.87974 | +0.39% |
| 2026-09-23 | 0.87635 | +0.46% |
| 2026-09-22 | 0.87237 | +0.24% |
| 2026-09-21 | 0.87032 | -0.26% |
| 2026-09-20 | 0.8726 | 0.00% |
| 2026-09-19 | 0.8726 | 0.00% |
| 2026-09-18 | 0.8726 | +0.18% |
| 2026-09-17 | 0.871 | +0.49% |
| 2026-09-16 | 0.86678 | +0.02% |
| 2026-09-15 | 0.86663 | +0.10% |
| 2026-09-14 | 0.86573 | +0.36% |
| 2026-09-13 | 0.86266 | 0.00% |
| 2026-09-12 | 0.86266 | 0.00% |
| Date | 1 USD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.86266 | +0.21% |
| 2026-09-10 | 0.86088 | +0.31% |
| 2026-09-09 | 0.85822 | -0.33% |
| 2026-09-08 | 0.86103 | +0.07% |
| 2026-09-07 | 0.86044 | 0.00% |
| 2026-09-06 | 0.86044 | 0.00% |
| 2026-09-05 | 0.86044 | 0.00% |
| 2026-09-04 | 0.86044 | -0.06% |
| 2026-09-03 | 0.86096 | -0.32% |
| 2026-09-02 | 0.86371 | +0.10% |
| 2026-09-01 | 0.86281 | +0.05% |
| 2026-08-31 | 0.86237 | +0.41% |
| 2026-08-30 | 0.85889 | 0.00% |
| 2026-08-29 | 0.85889 | 0.00% |
| 2026-08-28 | 0.85889 | — |
USD to EUR conversion table
1 USD0.87696 EUR
5 USD4.3848 EUR
10 USD8.7696 EUR
25 USD21.9241 EUR
50 USD43.8481 EUR
100 USD87.6962 EUR
500 USD438.4811 EUR
1,000 USD876.9622 EUR
5,000 USD4,384.811 EUR
10,000 USD8,769.622 EUR
Get the USD/EUR rate in your app
One GET request returns the latest USD → EUR rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/USD/EUR"fetch('https://rate-api.com/api/v1/pair/USD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "EUR"
},
"rate": 0.877,
"timestamp": 1790447440,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
EUR to USDEuro → US Dollar1.1403Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.