Convert BRL to JPY
Brazilian Real → Japanese Yen
1 BRL = 30.410722 JPY(1 JPY = 0.0328831 BRL)
Currency converter
1 BRL =
30.4107 JPY
BRL to JPY: last 30 days
Over the last 30 days, 1 BRL traded between 29.9713 and 30.9861 JPY, averaging 30.5088 JPY. The BRL/JPY rate is down 1.65% since 2026-08-28.
- 30-day high
- 30.9861
- 2026-09-02
- 30-day low
- 29.9713
- 2026-09-14
- 30-day average
- 30.5088
- Days with data: 30
- 30-day change
- -1.65%
- since 2026-08-28
30.9861
29.97132026-08-28 → 2026-09-26
| Date | 1 BRL in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 30.4107 | 0.00% |
| 2026-09-25 | 30.4107 | -0.82% |
| 2026-09-24 | 30.6623 | -0.35% |
| 2026-09-23 | 30.7698 | +0.29% |
| 2026-09-22 | 30.6806 | +0.04% |
| 2026-09-21 | 30.6695 | -0.24% |
| 2026-09-20 | 30.7424 | 0.00% |
| 2026-09-19 | 30.7424 | 0.00% |
| 2026-09-18 | 30.7424 | +1.31% |
| 2026-09-17 | 30.3448 | +0.71% |
| 2026-09-16 | 30.1308 | +0.14% |
| 2026-09-15 | 30.0901 | +0.40% |
| 2026-09-14 | 29.9713 | -0.56% |
| 2026-09-13 | 30.1401 | 0.00% |
| 2026-09-12 | 30.1401 | 0.00% |
| Date | 1 BRL in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 30.1401 | +0.18% |
| 2026-09-10 | 30.0857 | -0.11% |
| 2026-09-09 | 30.1185 | -0.23% |
| 2026-09-08 | 30.1892 | +0.00% |
| 2026-09-07 | 30.1886 | -1.24% |
| 2026-09-06 | 30.5689 | 0.00% |
| 2026-09-05 | 30.5689 | 0.00% |
| 2026-09-04 | 30.5689 | -0.58% |
| 2026-09-03 | 30.7469 | -0.77% |
| 2026-09-02 | 30.9861 | +0.58% |
| 2026-09-01 | 30.8065 | -0.25% |
| 2026-08-31 | 30.8848 | -0.12% |
| 2026-08-30 | 30.9212 | 0.00% |
| 2026-08-29 | 30.9212 | 0.00% |
| 2026-08-28 | 30.9212 | — |
BRL to JPY conversion table
1 BRL30.4107 JPY
5 BRL152.0536 JPY
10 BRL304.1072 JPY
25 BRL760.2681 JPY
50 BRL1,520.5361 JPY
100 BRL3,041.0722 JPY
500 BRL15,205.361 JPY
1,000 BRL30,410.722 JPY
5,000 BRL152,053.61 JPY
10,000 BRL304,107.22 JPY
Get the BRL/JPY rate in your app
One GET request returns the latest BRL → JPY 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/BRL/JPY"fetch('https://rate-api.com/api/v1/pair/BRL/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BRL = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BRL/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BRL = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BRL/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BRL = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "BRL",
"to": "JPY"
},
"rate": 30.4107,
"timestamp": 1790432091,
"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
JPY to BRLJapanese Yen → Brazilian Real0.032883Convert BRL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.