Convert BBD to EUR
Barbadian Dollar → Euro
1 BBD = 0.438481 EUR(1 EUR = 2.2806 BBD)
Currency converter
1 BBD =
0.43848 EUR
BBD to EUR: last 30 days
Over the last 30 days, 1 BBD traded between 0.42911 and 0.43987 EUR, averaging 0.43285 EUR. The BBD/EUR rate is up 2.10% since 2026-08-28.
- 30-day high
- 0.43987
- 2026-09-24
- 30-day low
- 0.42911
- 2026-09-09
- 30-day average
- 0.43285
- Days with data: 30
- 30-day change
- +2.10%
- since 2026-08-28
0.43987
0.429112026-08-28 → 2026-09-26
| Date | 1 BBD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.43848 | 0.00% |
| 2026-09-25 | 0.43848 | -0.32% |
| 2026-09-24 | 0.43987 | +0.39% |
| 2026-09-23 | 0.43817 | +0.46% |
| 2026-09-22 | 0.43619 | +0.24% |
| 2026-09-21 | 0.43516 | -0.26% |
| 2026-09-20 | 0.4363 | 0.00% |
| 2026-09-19 | 0.4363 | +0.69% |
| 2026-09-18 | 0.4333 | -0.51% |
| 2026-09-17 | 0.4355 | +0.49% |
| 2026-09-16 | 0.43339 | +0.02% |
| 2026-09-15 | 0.43332 | +0.10% |
| 2026-09-14 | 0.43287 | +0.36% |
| 2026-09-13 | 0.43133 | 0.00% |
| 2026-09-12 | 0.43133 | 0.00% |
| Date | 1 BBD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.43133 | +0.21% |
| 2026-09-10 | 0.43044 | +0.31% |
| 2026-09-09 | 0.42911 | -0.33% |
| 2026-09-08 | 0.43052 | +0.07% |
| 2026-09-07 | 0.43022 | 0.00% |
| 2026-09-06 | 0.43022 | 0.00% |
| 2026-09-05 | 0.43022 | 0.00% |
| 2026-09-04 | 0.43022 | -0.06% |
| 2026-09-03 | 0.43048 | -0.32% |
| 2026-09-02 | 0.43186 | +0.10% |
| 2026-09-01 | 0.43141 | +0.05% |
| 2026-08-31 | 0.43119 | +0.41% |
| 2026-08-30 | 0.42945 | 0.00% |
| 2026-08-29 | 0.42945 | 0.00% |
| 2026-08-28 | 0.42945 | — |
BBD to EUR conversion table
1 BBD0.43848 EUR
5 BBD2.1924 EUR
10 BBD4.3848 EUR
25 BBD10.962 EUR
50 BBD21.9241 EUR
100 BBD43.8481 EUR
500 BBD219.2406 EUR
1,000 BBD438.4811 EUR
5,000 BBD2,192.4055 EUR
10,000 BBD4,384.811 EUR
Get the BBD/EUR rate in your app
One GET request returns the latest BBD → 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/BBD/EUR"fetch('https://rate-api.com/api/v1/pair/BBD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BBD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BBD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BBD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BBD/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BBD = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "BBD",
"to": "EUR"
},
"rate": 0.4385,
"timestamp": 1790432069,
"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 BBDEuro → Barbadian Dollar2.2806Convert BBD to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.