Convert EUR to BND
Euro → Brunei Dollar
1 EUR = 1.4563 BND(1 BND = 0.686672 EUR)
Currency converter
1 EUR =
1.4563 BND
EUR to BND: last 30 days
Over the last 30 days, 1 EUR traded between 1.4549 and 1.4843 BND, averaging 1.4689 BND. The EUR/BND rate is down 1.58% since 2026-08-28.
- 30-day high
- 1.4843
- 2026-08-29
- 30-day low
- 1.4549
- 2026-09-24
- 30-day average
- 1.4689
- Days with data: 30
- 30-day change
- -1.58%
- since 2026-08-28
1.4843
1.45492026-08-28 → 2026-09-26
| Date | 1 EUR in BND | Daily change |
|---|---|---|
| 2026-09-26 | 1.4563 | 0.00% |
| 2026-09-25 | 1.4563 | +0.10% |
| 2026-09-24 | 1.4549 | -0.26% |
| 2026-09-23 | 1.4587 | -0.23% |
| 2026-09-22 | 1.4621 | -0.24% |
| 2026-09-21 | 1.4656 | +0.22% |
| 2026-09-20 | 1.4623 | +0.01% |
| 2026-09-19 | 1.4622 | +0.01% |
| 2026-09-18 | 1.462 | -0.23% |
| 2026-09-17 | 1.4654 | -0.23% |
| 2026-09-16 | 1.4688 | +0.07% |
| 2026-09-15 | 1.4678 | +0.13% |
| 2026-09-14 | 1.4658 | -0.19% |
| 2026-09-13 | 1.4686 | +0.01% |
| 2026-09-12 | 1.4685 | -0.13% |
| Date | 1 EUR in BND | Daily change |
|---|---|---|
| 2026-09-11 | 1.4703 | +0.14% |
| 2026-09-10 | 1.4683 | -0.35% |
| 2026-09-09 | 1.4735 | +0.31% |
| 2026-09-08 | 1.4689 | -0.29% |
| 2026-09-07 | 1.4732 | +0.03% |
| 2026-09-06 | 1.4727 | -0.11% |
| 2026-09-05 | 1.4744 | +0.10% |
| 2026-09-04 | 1.4729 | -0.13% |
| 2026-09-03 | 1.4748 | +0.02% |
| 2026-09-02 | 1.4745 | +0.02% |
| 2026-09-01 | 1.4742 | -0.13% |
| 2026-08-31 | 1.476 | -0.45% |
| 2026-08-30 | 1.4828 | -0.10% |
| 2026-08-29 | 1.4843 | +0.31% |
| 2026-08-28 | 1.4797 | — |
EUR to BND conversion table
1 EUR1.4563 BND
5 EUR7.2815 BND
10 EUR14.563 BND
25 EUR36.4075 BND
50 EUR72.815 BND
100 EUR145.63 BND
500 EUR728.15 BND
1,000 EUR1,456.3 BND
5,000 EUR7,281.5 BND
10,000 EUR14,563 BND
Get the EUR/BND rate in your app
One GET request returns the latest EUR → BND 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/BND"fetch('https://rate-api.com/api/v1/pair/EUR/BND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} BND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/BND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} BND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/BND');
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']} BND\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "BND"
},
"rate": 1.4563,
"timestamp": 1790429369,
"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
BND to EURBrunei Dollar → Euro0.68667Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.