Convert CHF to BND
Swiss Franc → Brunei Dollar
1 CHF = 1.541874 BND(1 BND = 0.648561 CHF)
Currency converter
1 CHF =
1.5419 BND
CHF to BND: last 30 days
Over the last 30 days, 1 CHF traded between 1.5419 and 1.5851 BND, averaging 1.558 BND. The CHF/BND rate is down 2.73% since 2026-08-29.
- 30-day high
- 1.5851
- 2026-08-29
- 30-day low
- 1.5419
- 2026-09-25
- 30-day average
- 1.558
- Days with data: 30
- 30-day change
- -2.73%
- since 2026-08-29
1.5851
1.54192026-08-29 → 2026-09-27
| Date | 1 CHF in BND | Daily change |
|---|---|---|
| 2026-09-27 | 1.5419 | 0.00% |
| 2026-09-26 | 1.5419 | 0.00% |
| 2026-09-25 | 1.5419 | -0.29% |
| 2026-09-24 | 1.5463 | -0.46% |
| 2026-09-23 | 1.5535 | -0.20% |
| 2026-09-22 | 1.5566 | +0.24% |
| 2026-09-21 | 1.5528 | +0.48% |
| 2026-09-20 | 1.5455 | +0.01% |
| 2026-09-19 | 1.5454 | +0.01% |
| 2026-09-18 | 1.5452 | -0.19% |
| 2026-09-17 | 1.5481 | -0.41% |
| 2026-09-16 | 1.5544 | -0.02% |
| 2026-09-15 | 1.5547 | +0.03% |
| 2026-09-14 | 1.5543 | +0.02% |
| 2026-09-13 | 1.5539 | +0.01% |
| Date | 1 CHF in BND | Daily change |
|---|---|---|
| 2026-09-12 | 1.5538 | -0.13% |
| 2026-09-11 | 1.5558 | -0.06% |
| 2026-09-10 | 1.5568 | -0.64% |
| 2026-09-09 | 1.5669 | +0.53% |
| 2026-09-08 | 1.5586 | -0.50% |
| 2026-09-07 | 1.5664 | +0.03% |
| 2026-09-06 | 1.5659 | -0.11% |
| 2026-09-05 | 1.5677 | +0.10% |
| 2026-09-04 | 1.5661 | -0.29% |
| 2026-09-03 | 1.5706 | +0.38% |
| 2026-09-02 | 1.5646 | -0.29% |
| 2026-09-01 | 1.5692 | -0.32% |
| 2026-08-31 | 1.5743 | -0.58% |
| 2026-08-30 | 1.5835 | -0.10% |
| 2026-08-29 | 1.5851 | — |
CHF to BND conversion table
1 CHF1.5419 BND
5 CHF7.7094 BND
10 CHF15.4187 BND
25 CHF38.5469 BND
50 CHF77.0937 BND
100 CHF154.1874 BND
500 CHF770.937 BND
1,000 CHF1,541.874 BND
5,000 CHF7,709.37 BND
10,000 CHF15,418.74 BND
Get the CHF/BND rate in your app
One GET request returns the latest CHF → 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/CHF/BND"fetch('https://rate-api.com/api/v1/pair/CHF/BND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} BND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/BND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} BND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/BND');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CHF = {$data['rate']} BND\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "BND"
},
"rate": 1.5419,
"timestamp": 1790470775,
"date": "2026-09-27"
}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 CHFBrunei Dollar → Swiss Franc0.64856Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.