Convert RON to EUR
Romanian Leu → Euro
1 RON = 0.18952 EUR(1 EUR = 5.2765 RON)
Currency converter
1 RON =
0.18952 EUR
RON to EUR: last 30 days
Over the last 30 days, 1 RON traded between 0.18945 and 0.19048 EUR, averaging 0.1901 EUR. The RON/EUR rate is down 0.34% since 2026-08-28.
- 30-day high
- 0.19048
- 2026-09-08
- 30-day low
- 0.18945
- 2026-09-23
- 30-day average
- 0.1901
- Days with data: 30
- 30-day change
- -0.34%
- since 2026-08-28
0.19048
0.189452026-08-28 → 2026-09-26
| Date | 1 RON in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.18952 | 0.00% |
| 2026-09-25 | 0.18952 | +0.03% |
| 2026-09-24 | 0.18947 | +0.01% |
| 2026-09-23 | 0.18945 | -0.24% |
| 2026-09-22 | 0.1899 | -0.02% |
| 2026-09-21 | 0.18994 | -0.00% |
| 2026-09-20 | 0.18994 | 0.00% |
| 2026-09-19 | 0.18994 | 0.00% |
| 2026-09-18 | 0.18994 | -0.04% |
| 2026-09-17 | 0.19003 | +0.01% |
| 2026-09-16 | 0.19001 | -0.00% |
| 2026-09-15 | 0.19002 | -0.11% |
| 2026-09-14 | 0.19023 | -0.04% |
| 2026-09-13 | 0.19031 | 0.00% |
| 2026-09-12 | 0.19031 | 0.00% |
| Date | 1 RON in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.19031 | -0.04% |
| 2026-09-10 | 0.19038 | +0.04% |
| 2026-09-09 | 0.19031 | -0.09% |
| 2026-09-08 | 0.19048 | +0.04% |
| 2026-09-07 | 0.19041 | +0.02% |
| 2026-09-06 | 0.19037 | 0.00% |
| 2026-09-05 | 0.19037 | 0.00% |
| 2026-09-04 | 0.19037 | +0.01% |
| 2026-09-03 | 0.19036 | +0.05% |
| 2026-09-02 | 0.19027 | +0.02% |
| 2026-09-01 | 0.19023 | +0.05% |
| 2026-08-31 | 0.19014 | -0.02% |
| 2026-08-30 | 0.19017 | 0.00% |
| 2026-08-29 | 0.19017 | 0.00% |
| 2026-08-28 | 0.19017 | — |
RON to EUR conversion table
1 RON0.18952 EUR
5 RON0.9476 EUR
10 RON1.8952 EUR
25 RON4.738 EUR
50 RON9.476 EUR
100 RON18.952 EUR
500 RON94.7598 EUR
1,000 RON189.5196 EUR
5,000 RON947.5978 EUR
10,000 RON1,895.1957 EUR
Get the RON/EUR rate in your app
One GET request returns the latest RON → 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/RON/EUR"fetch('https://rate-api.com/api/v1/pair/RON/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RON = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RON/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RON = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RON/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RON = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "RON",
"to": "EUR"
},
"rate": 0.1895,
"timestamp": 1790432096,
"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 RONEuro → Romanian Leu5.2765Convert RON to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.