Convert USD to RON
US Dollar → Romanian Leu
1 USD = 4.627291 RON(1 RON = 0.216109 USD)
Currency converter
1 USD =
4.6273 RON
USD to RON: last 30 days
Over the last 30 days, 1 USD traded between 4.5096 and 4.6432 RON, averaging 4.555 RON. The USD/RON rate is up 2.46% since 2026-08-28.
- 30-day high
- 4.6432
- 2026-09-24
- 30-day low
- 4.5096
- 2026-09-09
- 30-day average
- 4.555
- Days with data: 30
- 30-day change
- +2.46%
- since 2026-08-28
4.6432
4.50962026-08-28 → 2026-09-26
| Date | 1 USD in RON | Daily change |
|---|---|---|
| 2026-09-26 | 4.6273 | 0.00% |
| 2026-09-25 | 4.6273 | -0.34% |
| 2026-09-24 | 4.6432 | +0.38% |
| 2026-09-23 | 4.6258 | +0.69% |
| 2026-09-22 | 4.5939 | +0.26% |
| 2026-09-21 | 4.582 | -0.26% |
| 2026-09-20 | 4.594 | 0.00% |
| 2026-09-19 | 4.594 | 0.00% |
| 2026-09-18 | 4.594 | +0.23% |
| 2026-09-17 | 4.5836 | +0.48% |
| 2026-09-16 | 4.5618 | +0.02% |
| 2026-09-15 | 4.5608 | +0.22% |
| 2026-09-14 | 4.5509 | +0.39% |
| 2026-09-13 | 4.533 | 0.00% |
| 2026-09-12 | 4.533 | 0.00% |
| Date | 1 USD in RON | Daily change |
|---|---|---|
| 2026-09-11 | 4.533 | +0.25% |
| 2026-09-10 | 4.5218 | +0.27% |
| 2026-09-09 | 4.5096 | -0.24% |
| 2026-09-08 | 4.5204 | +0.03% |
| 2026-09-07 | 4.5189 | -0.02% |
| 2026-09-06 | 4.5199 | 0.00% |
| 2026-09-05 | 4.5199 | 0.00% |
| 2026-09-04 | 4.5199 | -0.07% |
| 2026-09-03 | 4.5229 | -0.37% |
| 2026-09-02 | 4.5395 | +0.09% |
| 2026-09-01 | 4.5355 | +0.00% |
| 2026-08-31 | 4.5354 | +0.42% |
| 2026-08-30 | 4.5164 | 0.00% |
| 2026-08-29 | 4.5164 | 0.00% |
| 2026-08-28 | 4.5164 | — |
USD to RON conversion table
1 USD4.6273 RON
5 USD23.1365 RON
10 USD46.2729 RON
25 USD115.6823 RON
50 USD231.3646 RON
100 USD462.7291 RON
500 USD2,313.6455 RON
1,000 USD4,627.2911 RON
5,000 USD23,136.455 RON
10,000 USD46,272.911 RON
Get the USD/RON rate in your app
One GET request returns the latest USD → 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/USD/RON"fetch('https://rate-api.com/api/v1/pair/USD/RON', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} RON`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/RON",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} RON")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/RON');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} RON\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "RON"
},
"rate": 4.6273,
"timestamp": 1790429286,
"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 USDRomanian Leu → US Dollar0.21611Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.