Convert RON to USD
Romanian Leu → US Dollar
1 RON = 0.216109 USD(1 USD = 4.627291 RON)
Currency converter
1 RON =
0.21611 USD
RON to USD: last 30 days
Over the last 30 days, 1 RON traded between 0.21537 and 0.22175 USD, averaging 0.21956 USD. The RON/USD rate is down 2.40% since 2026-08-28.
- 30-day high
- 0.22175
- 2026-09-09
- 30-day low
- 0.21537
- 2026-09-24
- 30-day average
- 0.21956
- Days with data: 30
- 30-day change
- -2.40%
- since 2026-08-28
0.22175
0.215372026-08-28 → 2026-09-26
| Date | 1 RON in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.21611 | 0.00% |
| 2026-09-25 | 0.21611 | +0.34% |
| 2026-09-24 | 0.21537 | -0.37% |
| 2026-09-23 | 0.21618 | -0.69% |
| 2026-09-22 | 0.21768 | -0.26% |
| 2026-09-21 | 0.21825 | +0.26% |
| 2026-09-20 | 0.21768 | 0.00% |
| 2026-09-19 | 0.21768 | 0.00% |
| 2026-09-18 | 0.21768 | -0.23% |
| 2026-09-17 | 0.21817 | -0.48% |
| 2026-09-16 | 0.21921 | -0.02% |
| 2026-09-15 | 0.21926 | -0.22% |
| 2026-09-14 | 0.21974 | -0.39% |
| 2026-09-13 | 0.2206 | 0.00% |
| 2026-09-12 | 0.2206 | 0.00% |
| Date | 1 RON in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.2206 | -0.25% |
| 2026-09-10 | 0.22115 | -0.27% |
| 2026-09-09 | 0.22175 | +0.24% |
| 2026-09-08 | 0.22122 | -0.03% |
| 2026-09-07 | 0.22129 | +0.02% |
| 2026-09-06 | 0.22124 | 0.00% |
| 2026-09-05 | 0.22124 | 0.00% |
| 2026-09-04 | 0.22124 | +0.07% |
| 2026-09-03 | 0.2211 | +0.37% |
| 2026-09-02 | 0.22029 | -0.09% |
| 2026-09-01 | 0.22048 | -0.00% |
| 2026-08-31 | 0.22049 | -0.42% |
| 2026-08-30 | 0.22142 | 0.00% |
| 2026-08-29 | 0.22142 | 0.00% |
| 2026-08-28 | 0.22142 | — |
RON to USD conversion table
1 RON0.21611 USD
5 RON1.0805 USD
10 RON2.1611 USD
25 RON5.4027 USD
50 RON10.8055 USD
100 RON21.6109 USD
500 RON108.0546 USD
1,000 RON216.1092 USD
5,000 RON1,080.5458 USD
10,000 RON2,161.0916 USD
Get the RON/USD rate in your app
One GET request returns the latest RON → USD 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/USD"fetch('https://rate-api.com/api/v1/pair/RON/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RON = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RON/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RON = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RON/USD');
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']} USD\n";Example response
{
"success": true,
"pair": {
"from": "RON",
"to": "USD"
},
"rate": 0.2161,
"timestamp": 1790432040,
"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
USD to RONUS Dollar → Romanian Leu4.6273Convert RON to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.