Convert EUR to RON
Euro → Romanian Leu
1 EUR = 5.2765 RON(1 RON = 0.18952 EUR)
Currency converter
1 EUR =
5.2765 RON
EUR to RON: last 30 days
Over the last 30 days, 1 EUR traded between 5.25 and 5.2785 RON, averaging 5.2604 RON. The EUR/RON rate is up 0.34% since 2026-08-28.
- 30-day high
- 5.2785
- 2026-09-23
- 30-day low
- 5.25
- 2026-09-08
- 30-day average
- 5.2604
- Days with data: 30
- 30-day change
- +0.34%
- since 2026-08-28
5.2785
5.252026-08-28 → 2026-09-26
| Date | 1 EUR in RON | Daily change |
|---|---|---|
| 2026-09-26 | 5.2765 | 0.00% |
| 2026-09-25 | 5.2765 | -0.03% |
| 2026-09-24 | 5.2779 | -0.01% |
| 2026-09-23 | 5.2785 | +0.24% |
| 2026-09-22 | 5.266 | +0.02% |
| 2026-09-21 | 5.2647 | +0.00% |
| 2026-09-20 | 5.2647 | 0.00% |
| 2026-09-19 | 5.2647 | 0.00% |
| 2026-09-18 | 5.2647 | +0.04% |
| 2026-09-17 | 5.2625 | -0.01% |
| 2026-09-16 | 5.2629 | +0.00% |
| 2026-09-15 | 5.2627 | +0.11% |
| 2026-09-14 | 5.2567 | +0.04% |
| 2026-09-13 | 5.2547 | 0.00% |
| 2026-09-12 | 5.2547 | 0.00% |
| Date | 1 EUR in RON | Daily change |
|---|---|---|
| 2026-09-11 | 5.2547 | +0.04% |
| 2026-09-10 | 5.2525 | -0.04% |
| 2026-09-09 | 5.2546 | +0.09% |
| 2026-09-08 | 5.25 | -0.04% |
| 2026-09-07 | 5.2518 | -0.02% |
| 2026-09-06 | 5.253 | 0.00% |
| 2026-09-05 | 5.253 | 0.00% |
| 2026-09-04 | 5.253 | -0.01% |
| 2026-09-03 | 5.2533 | -0.05% |
| 2026-09-02 | 5.2558 | -0.02% |
| 2026-09-01 | 5.2567 | -0.05% |
| 2026-08-31 | 5.2592 | +0.02% |
| 2026-08-30 | 5.2584 | 0.00% |
| 2026-08-29 | 5.2584 | 0.00% |
| 2026-08-28 | 5.2584 | — |
EUR to RON conversion table
1 EUR5.2765 RON
5 EUR26.3825 RON
10 EUR52.765 RON
25 EUR131.9125 RON
50 EUR263.825 RON
100 EUR527.65 RON
500 EUR2,638.25 RON
1,000 EUR5,276.5 RON
5,000 EUR26,382.5 RON
10,000 EUR52,765 RON
Get the EUR/RON rate in your app
One GET request returns the latest EUR → RON 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/RON"fetch('https://rate-api.com/api/v1/pair/EUR/RON', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} RON`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/RON",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} RON")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/RON');
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']} RON\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "RON"
},
"rate": 5.2765,
"timestamp": 1790429345,
"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
RON to EURRomanian Leu → Euro0.18952Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.