Convert JPY to BRL
Japanese Yen → Brazilian Real
1 JPY = 0.0328831 BRL(1 BRL = 30.410722 JPY)
Currency converter
1 JPY =
0.032883 BRL
JPY to BRL: last 30 days
Over the last 30 days, 1 JPY traded between 0.032273 and 0.033365 BRL, averaging 0.032781 BRL. The JPY/BRL rate is up 1.68% since 2026-08-28.
- 30-day high
- 0.033365
- 2026-09-14
- 30-day low
- 0.032273
- 2026-09-02
- 30-day average
- 0.032781
- Days with data: 30
- 30-day change
- +1.68%
- since 2026-08-28
0.033365
0.0322732026-08-28 → 2026-09-26
| Date | 1 JPY in BRL | Daily change |
|---|---|---|
| 2026-09-26 | 0.032883 | 0.00% |
| 2026-09-25 | 0.032883 | +0.83% |
| 2026-09-24 | 0.032613 | +0.35% |
| 2026-09-23 | 0.032499 | -0.29% |
| 2026-09-22 | 0.032594 | -0.04% |
| 2026-09-21 | 0.032606 | +0.24% |
| 2026-09-20 | 0.032528 | 0.00% |
| 2026-09-19 | 0.032528 | 0.00% |
| 2026-09-18 | 0.032528 | -1.29% |
| 2026-09-17 | 0.032955 | -0.71% |
| 2026-09-16 | 0.033189 | -0.14% |
| 2026-09-15 | 0.033234 | -0.39% |
| 2026-09-14 | 0.033365 | +0.56% |
| 2026-09-13 | 0.033178 | 0.00% |
| 2026-09-12 | 0.033178 | 0.00% |
| Date | 1 JPY in BRL | Daily change |
|---|---|---|
| 2026-09-11 | 0.033178 | -0.18% |
| 2026-09-10 | 0.033238 | +0.11% |
| 2026-09-09 | 0.033202 | +0.23% |
| 2026-09-08 | 0.033124 | -0.00% |
| 2026-09-07 | 0.033125 | +1.26% |
| 2026-09-06 | 0.032713 | 0.00% |
| 2026-09-05 | 0.032713 | 0.00% |
| 2026-09-04 | 0.032713 | +0.58% |
| 2026-09-03 | 0.032524 | +0.78% |
| 2026-09-02 | 0.032273 | -0.58% |
| 2026-09-01 | 0.032461 | +0.25% |
| 2026-08-31 | 0.032378 | +0.12% |
| 2026-08-30 | 0.03234 | 0.00% |
| 2026-08-29 | 0.03234 | 0.00% |
| 2026-08-28 | 0.03234 | — |
JPY to BRL conversion table
1 JPY0.032883 BRL
5 JPY0.16442 BRL
10 JPY0.32883 BRL
25 JPY0.82208 BRL
50 JPY1.6442 BRL
100 JPY3.2883 BRL
500 JPY16.4416 BRL
1,000 JPY32.8831 BRL
5,000 JPY164.4157 BRL
10,000 JPY328.8314 BRL
Get the JPY/BRL rate in your app
One GET request returns the latest JPY → BRL 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/BRL"fetch('https://rate-api.com/api/v1/pair/JPY/BRL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} BRL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/BRL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} BRL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/BRL');
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']} BRL\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "BRL"
},
"rate": 0.0329,
"timestamp": 1790432079,
"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
BRL to JPYBrazilian Real → Japanese Yen30.4107Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.