Convert EUR to BBD
Euro → Barbadian Dollar
1 EUR = 2.2806 BBD(1 BBD = 0.438481 EUR)
Currency converter
1 EUR =
2.2806 BBD
EUR to BBD: last 30 days
Over the last 30 days, 1 EUR traded between 2.2734 and 2.3304 BBD, averaging 2.3104 BBD. The EUR/BBD rate is down 2.06% since 2026-08-28.
- 30-day high
- 2.3304
- 2026-09-09
- 30-day low
- 2.2734
- 2026-09-24
- 30-day average
- 2.3104
- Days with data: 30
- 30-day change
- -2.06%
- since 2026-08-28
2.3304
2.27342026-08-28 → 2026-09-26
| Date | 1 EUR in BBD | Daily change |
|---|---|---|
| 2026-09-26 | 2.2806 | 0.00% |
| 2026-09-25 | 2.2806 | +0.32% |
| 2026-09-24 | 2.2734 | -0.39% |
| 2026-09-23 | 2.2822 | -0.45% |
| 2026-09-22 | 2.2926 | -0.23% |
| 2026-09-21 | 2.298 | +0.26% |
| 2026-09-20 | 2.292 | 0.00% |
| 2026-09-19 | 2.292 | -0.69% |
| 2026-09-18 | 2.3079 | +0.51% |
| 2026-09-17 | 2.2962 | -0.48% |
| 2026-09-16 | 2.3074 | -0.02% |
| 2026-09-15 | 2.3078 | -0.10% |
| 2026-09-14 | 2.3102 | -0.35% |
| 2026-09-13 | 2.3184 | 0.00% |
| 2026-09-12 | 2.3184 | 0.00% |
| Date | 1 EUR in BBD | Daily change |
|---|---|---|
| 2026-09-11 | 2.3184 | -0.21% |
| 2026-09-10 | 2.3232 | -0.31% |
| 2026-09-09 | 2.3304 | +0.33% |
| 2026-09-08 | 2.3228 | -0.07% |
| 2026-09-07 | 2.3244 | 0.00% |
| 2026-09-06 | 2.3244 | 0.00% |
| 2026-09-05 | 2.3244 | 0.00% |
| 2026-09-04 | 2.3244 | +0.06% |
| 2026-09-03 | 2.323 | +0.32% |
| 2026-09-02 | 2.3156 | -0.10% |
| 2026-09-01 | 2.318 | -0.05% |
| 2026-08-31 | 2.3192 | -0.40% |
| 2026-08-30 | 2.3286 | 0.00% |
| 2026-08-29 | 2.3286 | 0.00% |
| 2026-08-28 | 2.3286 | — |
EUR to BBD conversion table
1 EUR2.2806 BBD
5 EUR11.403 BBD
10 EUR22.806 BBD
25 EUR57.015 BBD
50 EUR114.03 BBD
100 EUR228.06 BBD
500 EUR1,140.3 BBD
1,000 EUR2,280.6 BBD
5,000 EUR11,403 BBD
10,000 EUR22,806 BBD
Get the EUR/BBD rate in your app
One GET request returns the latest EUR → BBD 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/BBD"fetch('https://rate-api.com/api/v1/pair/EUR/BBD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} BBD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/BBD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} BBD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/BBD');
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']} BBD\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "BBD"
},
"rate": 2.2806,
"timestamp": 1790429308,
"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
BBD to EURBarbadian Dollar → Euro0.43848Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.