Convert BND to EUR
Brunei Dollar → Euro
1 BND = 0.686672 EUR(1 EUR = 1.4563 BND)
Currency converter
1 BND =
0.68667 EUR
BND to EUR: last 30 days
Over the last 30 days, 1 BND traded between 0.67373 and 0.68733 EUR, averaging 0.68082 EUR. The BND/EUR rate is up 1.61% since 2026-08-28.
- 30-day high
- 0.68733
- 2026-09-24
- 30-day low
- 0.67373
- 2026-08-29
- 30-day average
- 0.68082
- Days with data: 30
- 30-day change
- +1.61%
- since 2026-08-28
0.68733
0.673732026-08-28 → 2026-09-26
| Date | 1 BND in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.68667 | 0.00% |
| 2026-09-25 | 0.68667 | -0.10% |
| 2026-09-24 | 0.68733 | +0.26% |
| 2026-09-23 | 0.68554 | +0.23% |
| 2026-09-22 | 0.68395 | +0.24% |
| 2026-09-21 | 0.68232 | -0.22% |
| 2026-09-20 | 0.68385 | -0.01% |
| 2026-09-19 | 0.68388 | -0.01% |
| 2026-09-18 | 0.68397 | +0.23% |
| 2026-09-17 | 0.68241 | +0.23% |
| 2026-09-16 | 0.68085 | -0.07% |
| 2026-09-15 | 0.68131 | -0.13% |
| 2026-09-14 | 0.68221 | +0.19% |
| 2026-09-13 | 0.68092 | -0.01% |
| 2026-09-12 | 0.68097 | +0.13% |
| Date | 1 BND in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.68011 | -0.14% |
| 2026-09-10 | 0.68105 | +0.35% |
| 2026-09-09 | 0.67867 | -0.31% |
| 2026-09-08 | 0.68077 | +0.29% |
| 2026-09-07 | 0.6788 | -0.03% |
| 2026-09-06 | 0.67901 | +0.11% |
| 2026-09-05 | 0.67824 | -0.10% |
| 2026-09-04 | 0.67892 | +0.13% |
| 2026-09-03 | 0.67805 | -0.02% |
| 2026-09-02 | 0.6782 | -0.02% |
| 2026-09-01 | 0.67835 | +0.13% |
| 2026-08-31 | 0.67749 | +0.46% |
| 2026-08-30 | 0.67442 | +0.10% |
| 2026-08-29 | 0.67373 | -0.31% |
| 2026-08-28 | 0.6758 | — |
BND to EUR conversion table
1 BND0.68667 EUR
5 BND3.4334 EUR
10 BND6.8667 EUR
25 BND17.1668 EUR
50 BND34.3336 EUR
100 BND68.6672 EUR
500 BND343.3359 EUR
1,000 BND686.6717 EUR
5,000 BND3,433.3585 EUR
10,000 BND6,866.717 EUR
Get the BND/EUR rate in your app
One GET request returns the latest BND → 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/BND/EUR"fetch('https://rate-api.com/api/v1/pair/BND/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BND = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BND/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BND = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BND/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BND = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "BND",
"to": "EUR"
},
"rate": 0.6867,
"timestamp": 1790435097,
"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 BNDEuro → Brunei Dollar1.4563Convert BND to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.