Convert BND to GBP
Brunei Dollar → British Pound
1 BND = 0.590847 GBP(1 GBP = 1.692487 BND)
Currency converter
1 BND =
0.59085 GBP
BND to GBP: last 30 days
Over the last 30 days, 1 BND traded between 0.57752 and 0.59101 GBP, averaging 0.58436 GBP. The BND/GBP rate is up 1.99% since 2026-08-28.
- 30-day high
- 0.59101
- 2026-09-24
- 30-day low
- 0.57752
- 2026-08-29
- 30-day average
- 0.58436
- Days with data: 30
- 30-day change
- +1.99%
- since 2026-08-28
0.59101
0.577522026-08-28 → 2026-09-26
| Date | 1 BND in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.59085 | 0.00% |
| 2026-09-25 | 0.59085 | -0.03% |
| 2026-09-24 | 0.59101 | +0.30% |
| 2026-09-23 | 0.58922 | +0.43% |
| 2026-09-22 | 0.58669 | +0.24% |
| 2026-09-21 | 0.5853 | -0.34% |
| 2026-09-20 | 0.58729 | -0.01% |
| 2026-09-19 | 0.58732 | -0.01% |
| 2026-09-18 | 0.5874 | +0.29% |
| 2026-09-17 | 0.58571 | +0.34% |
| 2026-09-16 | 0.58376 | +0.12% |
| 2026-09-15 | 0.58307 | -0.15% |
| 2026-09-14 | 0.58395 | -0.07% |
| 2026-09-13 | 0.58434 | -0.01% |
| 2026-09-12 | 0.58438 | +0.13% |
| Date | 1 BND in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.58365 | -0.25% |
| 2026-09-10 | 0.58512 | +0.37% |
| 2026-09-09 | 0.58297 | -0.12% |
| 2026-09-08 | 0.58369 | +0.11% |
| 2026-09-07 | 0.58305 | -0.04% |
| 2026-09-06 | 0.58325 | +0.11% |
| 2026-09-05 | 0.58259 | -0.10% |
| 2026-09-04 | 0.58318 | -0.05% |
| 2026-09-03 | 0.5835 | +0.19% |
| 2026-09-02 | 0.58237 | +0.23% |
| 2026-09-01 | 0.58104 | +0.14% |
| 2026-08-31 | 0.58025 | +0.37% |
| 2026-08-30 | 0.57811 | +0.10% |
| 2026-08-29 | 0.57752 | -0.31% |
| 2026-08-28 | 0.5793 | — |
BND to GBP conversion table
1 BND0.59085 GBP
5 BND2.9542 GBP
10 BND5.9085 GBP
25 BND14.7712 GBP
50 BND29.5423 GBP
100 BND59.0847 GBP
500 BND295.4233 GBP
1,000 BND590.8467 GBP
5,000 BND2,954.2333 GBP
10,000 BND5,908.4667 GBP
Get the BND/GBP rate in your app
One GET request returns the latest BND → GBP 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/GBP"fetch('https://rate-api.com/api/v1/pair/BND/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BND = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BND/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BND = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BND/GBP');
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']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "BND",
"to": "GBP"
},
"rate": 0.5908,
"timestamp": 1790432123,
"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
GBP to BNDBritish Pound → Brunei Dollar1.6925Convert BND to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.