Convert JPY to BND
Japanese Yen → Brunei Dollar
1 JPY = 0.00810406 BND(1 BND = 123.3949 JPY)
Currency converter
1 JPY =
0.0081041 BND
JPY to BND: last 30 days
Over the last 30 days, 1 JPY traded between 0.0079416 and 0.0082506 BND, averaging 0.0081154 BND. The JPY/BND rate is up 1.82% since 2026-08-28.
- 30-day high
- 0.0082506
- 2026-09-09
- 30-day low
- 0.0079416
- 2026-09-01
- 30-day average
- 0.0081154
- Days with data: 30
- 30-day change
- +1.82%
- since 2026-08-28
0.0082506
0.00794162026-08-28 → 2026-09-26
| Date | 1 JPY in BND | Daily change |
|---|---|---|
| 2026-09-26 | 0.0081041 | 0.00% |
| 2026-09-25 | 0.0081041 | +0.58% |
| 2026-09-24 | 0.0080573 | -0.46% |
| 2026-09-23 | 0.0080949 | -0.25% |
| 2026-09-22 | 0.0081148 | +0.05% |
| 2026-09-21 | 0.0081104 | +0.36% |
| 2026-09-20 | 0.0080817 | +0.01% |
| 2026-09-19 | 0.0080813 | +0.01% |
| 2026-09-18 | 0.0080802 | -1.44% |
| 2026-09-17 | 0.0081981 | -0.15% |
| 2026-09-16 | 0.0082108 | +0.05% |
| 2026-09-15 | 0.0082064 | -0.06% |
| 2026-09-14 | 0.008211 | -0.16% |
| 2026-09-13 | 0.0082245 | +0.01% |
| 2026-09-12 | 0.0082239 | -0.13% |
| Date | 1 JPY in BND | Daily change |
|---|---|---|
| 2026-09-11 | 0.0082343 | +0.44% |
| 2026-09-10 | 0.0081986 | -0.63% |
| 2026-09-09 | 0.0082506 | +0.65% |
| 2026-09-08 | 0.008197 | +0.07% |
| 2026-09-07 | 0.0081912 | +1.00% |
| 2026-09-06 | 0.0081101 | -0.11% |
| 2026-09-05 | 0.0081193 | +0.10% |
| 2026-09-04 | 0.0081111 | -0.34% |
| 2026-09-03 | 0.008139 | +2.00% |
| 2026-09-02 | 0.0079795 | +0.48% |
| 2026-09-01 | 0.0079416 | -0.34% |
| 2026-08-31 | 0.007969 | -0.08% |
| 2026-08-30 | 0.0079755 | -0.10% |
| 2026-08-29 | 0.0079836 | +0.31% |
| 2026-08-28 | 0.0079592 | — |
JPY to BND conversion table
1 JPY0.0081041 BND
5 JPY0.04052 BND
10 JPY0.081041 BND
25 JPY0.2026 BND
50 JPY0.4052 BND
100 JPY0.81041 BND
500 JPY4.052 BND
1,000 JPY8.1041 BND
5,000 JPY40.5203 BND
10,000 JPY81.0406 BND
Get the JPY/BND rate in your app
One GET request returns the latest JPY → 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/JPY/BND?precision=6"fetch('https://rate-api.com/api/v1/pair/JPY/BND?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} BND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/BND?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} BND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/BND?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} BND\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "BND"
},
"rate": 0.008104,
"timestamp": 1790429300,
"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 JPYBrunei Dollar → Japanese Yen123.3949Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.