Convert EUR to BRL
Euro → Brazilian Real
1 EUR = 5.9091 BRL(1 BRL = 0.169231 EUR)
Currency converter
1 EUR =
5.9091 BRL
EUR to BRL: last 30 days
Over the last 30 days, 1 EUR traded between 5.8564 and 6.0255 BRL, averaging 5.9334 BRL. The EUR/BRL rate is down 1.72% since 2026-08-28.
- 30-day high
- 6.0255
- 2026-09-01
- 30-day low
- 5.8564
- 2026-09-23
- 30-day average
- 5.9334
- Days with data: 30
- 30-day change
- -1.72%
- since 2026-08-28
6.0255
5.85642026-08-28 → 2026-09-26
| Date | 1 EUR in BRL | Daily change |
|---|---|---|
| 2026-09-26 | 5.9091 | 0.00% |
| 2026-09-25 | 5.9091 | +0.34% |
| 2026-09-24 | 5.889 | +0.56% |
| 2026-09-23 | 5.8564 | -0.28% |
| 2026-09-22 | 5.8726 | -0.33% |
| 2026-09-21 | 5.892 | +0.11% |
| 2026-09-20 | 5.8857 | 0.00% |
| 2026-09-19 | 5.8857 | 0.00% |
| 2026-09-18 | 5.8857 | -0.08% |
| 2026-09-17 | 5.8906 | -0.78% |
| 2026-09-16 | 5.9368 | -0.12% |
| 2026-09-15 | 5.9439 | -0.21% |
| 2026-09-14 | 5.9564 | +0.54% |
| 2026-09-13 | 5.9245 | 0.00% |
| 2026-09-12 | 5.9245 | 0.00% |
| Date | 1 EUR in BRL | Daily change |
|---|---|---|
| 2026-09-11 | 5.9245 | -0.48% |
| 2026-09-10 | 5.9529 | +0.39% |
| 2026-09-09 | 5.9296 | -0.11% |
| 2026-09-08 | 5.936 | -0.36% |
| 2026-09-07 | 5.9575 | +0.29% |
| 2026-09-06 | 5.9404 | 0.00% |
| 2026-09-05 | 5.9404 | 0.00% |
| 2026-09-04 | 5.9404 | +0.80% |
| 2026-09-03 | 5.8934 | -1.17% |
| 2026-09-02 | 5.9635 | -1.03% |
| 2026-09-01 | 6.0255 | +0.47% |
| 2026-08-31 | 5.9972 | -0.26% |
| 2026-08-30 | 6.0125 | 0.00% |
| 2026-08-29 | 6.0125 | 0.00% |
| 2026-08-28 | 6.0125 | — |
EUR to BRL conversion table
1 EUR5.9091 BRL
5 EUR29.5455 BRL
10 EUR59.091 BRL
25 EUR147.7275 BRL
50 EUR295.455 BRL
100 EUR590.91 BRL
500 EUR2,954.55 BRL
1,000 EUR5,909.1 BRL
5,000 EUR29,545.5 BRL
10,000 EUR59,091 BRL
Get the EUR/BRL rate in your app
One GET request returns the latest EUR → 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/EUR/BRL"fetch('https://rate-api.com/api/v1/pair/EUR/BRL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} BRL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/BRL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} BRL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/BRL');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} BRL\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "BRL"
},
"rate": 5.9091,
"timestamp": 1790429395,
"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 EURBrazilian Real → Euro0.16923Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.