Convert BRL to EUR
Brazilian Real → Euro
1 BRL = 0.169231 EUR(1 EUR = 5.9091 BRL)
Currency converter
1 BRL =
0.16923 EUR
BRL to EUR: last 30 days
Over the last 30 days, 1 BRL traded between 0.16596 and 0.17075 EUR, averaging 0.16855 EUR. The BRL/EUR rate is up 1.75% since 2026-08-28.
- 30-day high
- 0.17075
- 2026-09-23
- 30-day low
- 0.16596
- 2026-09-01
- 30-day average
- 0.16855
- Days with data: 30
- 30-day change
- +1.75%
- since 2026-08-28
0.17075
0.165962026-08-28 → 2026-09-26
| Date | 1 BRL in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.16923 | 0.00% |
| 2026-09-25 | 0.16923 | -0.34% |
| 2026-09-24 | 0.16981 | -0.55% |
| 2026-09-23 | 0.17075 | +0.28% |
| 2026-09-22 | 0.17028 | +0.33% |
| 2026-09-21 | 0.16972 | -0.11% |
| 2026-09-20 | 0.1699 | 0.00% |
| 2026-09-19 | 0.1699 | 0.00% |
| 2026-09-18 | 0.1699 | +0.08% |
| 2026-09-17 | 0.16976 | +0.78% |
| 2026-09-16 | 0.16844 | +0.12% |
| 2026-09-15 | 0.16824 | +0.21% |
| 2026-09-14 | 0.16789 | -0.54% |
| 2026-09-13 | 0.16879 | 0.00% |
| 2026-09-12 | 0.16879 | 0.00% |
| Date | 1 BRL in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.16879 | +0.48% |
| 2026-09-10 | 0.16799 | -0.39% |
| 2026-09-09 | 0.16865 | +0.11% |
| 2026-09-08 | 0.16846 | +0.36% |
| 2026-09-07 | 0.16785 | -0.29% |
| 2026-09-06 | 0.16834 | 0.00% |
| 2026-09-05 | 0.16834 | 0.00% |
| 2026-09-04 | 0.16834 | -0.79% |
| 2026-09-03 | 0.16968 | +1.19% |
| 2026-09-02 | 0.16769 | +1.04% |
| 2026-09-01 | 0.16596 | -0.47% |
| 2026-08-31 | 0.16674 | +0.26% |
| 2026-08-30 | 0.16632 | 0.00% |
| 2026-08-29 | 0.16632 | 0.00% |
| 2026-08-28 | 0.16632 | — |
BRL to EUR conversion table
1 BRL0.16923 EUR
5 BRL0.84615 EUR
10 BRL1.6923 EUR
25 BRL4.2308 EUR
50 BRL8.4615 EUR
100 BRL16.9231 EUR
500 BRL84.6153 EUR
1,000 BRL169.2305 EUR
5,000 BRL846.1525 EUR
10,000 BRL1,692.3051 EUR
Get the BRL/EUR rate in your app
One GET request returns the latest BRL → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/BRL/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BRL = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BRL/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BRL = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BRL/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "BRL",
"to": "EUR"
},
"rate": 0.1692,
"timestamp": 1790432138,
"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
EUR to BRLEuro → Brazilian Real5.9091Convert BRL to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.