Convert EUR to BMD
Euro → Bermudan Dollar
1 EUR = 1.1403 BMD(1 BMD = 0.876962 EUR)
Currency converter
1 EUR =
1.1403 BMD
EUR to BMD: last 30 days
Over the last 30 days, 1 EUR traded between 1.1367 and 1.1652 BMD, averaging 1.1549 BMD. The EUR/BMD rate is down 2.06% since 2026-08-28.
- 30-day high
- 1.1652
- 2026-09-09
- 30-day low
- 1.1367
- 2026-09-24
- 30-day average
- 1.1549
- Days with data: 30
- 30-day change
- -2.06%
- since 2026-08-28
1.1652
1.13672026-08-28 → 2026-09-26
| Date | 1 EUR in BMD | Daily change |
|---|---|---|
| 2026-09-26 | 1.1403 | 0.00% |
| 2026-09-25 | 1.1403 | +0.32% |
| 2026-09-24 | 1.1367 | -0.39% |
| 2026-09-23 | 1.1411 | -0.45% |
| 2026-09-22 | 1.1463 | -0.23% |
| 2026-09-21 | 1.149 | +0.26% |
| 2026-09-20 | 1.146 | 0.00% |
| 2026-09-19 | 1.146 | 0.00% |
| 2026-09-18 | 1.146 | -0.18% |
| 2026-09-17 | 1.1481 | -0.48% |
| 2026-09-16 | 1.1537 | -0.02% |
| 2026-09-15 | 1.1539 | -0.10% |
| 2026-09-14 | 1.1551 | -0.35% |
| 2026-09-13 | 1.1592 | 0.00% |
| 2026-09-12 | 1.1592 | 0.00% |
| Date | 1 EUR in BMD | Daily change |
|---|---|---|
| 2026-09-11 | 1.1592 | -0.21% |
| 2026-09-10 | 1.1616 | -0.31% |
| 2026-09-09 | 1.1652 | +0.33% |
| 2026-09-08 | 1.1614 | -0.07% |
| 2026-09-07 | 1.1622 | 0.00% |
| 2026-09-06 | 1.1622 | 0.00% |
| 2026-09-05 | 1.1622 | 0.00% |
| 2026-09-04 | 1.1622 | +0.06% |
| 2026-09-03 | 1.1615 | +0.32% |
| 2026-09-02 | 1.1578 | -0.10% |
| 2026-09-01 | 1.159 | -0.05% |
| 2026-08-31 | 1.1596 | -0.40% |
| 2026-08-30 | 1.1643 | 0.00% |
| 2026-08-29 | 1.1643 | 0.00% |
| 2026-08-28 | 1.1643 | — |
EUR to BMD conversion table
1 EUR1.1403 BMD
5 EUR5.7015 BMD
10 EUR11.403 BMD
25 EUR28.5075 BMD
50 EUR57.015 BMD
100 EUR114.03 BMD
500 EUR570.15 BMD
1,000 EUR1,140.3 BMD
5,000 EUR5,701.5 BMD
10,000 EUR11,403 BMD
Get the EUR/BMD rate in your app
One GET request returns the latest EUR → BMD 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/EUR/BMD"fetch('https://rate-api.com/api/v1/pair/EUR/BMD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} BMD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/BMD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} BMD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/BMD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} BMD\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "BMD"
},
"rate": 1.1403,
"timestamp": 1790429306,
"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
BMD to EURBermudan Dollar → Euro0.87696Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.