Convert AUD to RON
Australian Dollar → Romanian Leu
1 AUD = 3.253083 RON(1 RON = 0.307401 AUD)
Currency converter
1 AUD =
3.2531 RON
AUD to RON: last 30 days
Over the last 30 days, 1 AUD traded between 3.2389 and 3.2709 RON, averaging 3.256 RON. The AUD/RON rate is up 0.11% since 2026-08-28.
- 30-day high
- 3.2709
- 2026-09-18
- 30-day low
- 3.2389
- 2026-09-01
- 30-day average
- 3.256
- Days with data: 30
- 30-day change
- +0.11%
- since 2026-08-28
3.2709
3.23892026-08-28 → 2026-09-26
| Date | 1 AUD in RON | Daily change |
|---|---|---|
| 2026-09-26 | 3.2531 | 0.00% |
| 2026-09-25 | 3.2531 | -0.29% |
| 2026-09-24 | 3.2626 | -0.20% |
| 2026-09-23 | 3.2692 | +0.09% |
| 2026-09-22 | 3.2664 | -0.13% |
| 2026-09-21 | 3.2705 | -0.01% |
| 2026-09-20 | 3.2709 | 0.00% |
| 2026-09-19 | 3.2709 | 0.00% |
| 2026-09-18 | 3.2709 | +0.31% |
| 2026-09-17 | 3.2607 | +0.22% |
| 2026-09-16 | 3.2535 | +0.11% |
| 2026-09-15 | 3.2498 | +0.16% |
| 2026-09-14 | 3.2446 | -0.21% |
| 2026-09-13 | 3.2513 | 0.00% |
| 2026-09-12 | 3.2513 | 0.00% |
| Date | 1 AUD in RON | Daily change |
|---|---|---|
| 2026-09-11 | 3.2513 | +0.08% |
| 2026-09-10 | 3.2489 | -0.28% |
| 2026-09-09 | 3.2581 | -0.09% |
| 2026-09-08 | 3.2612 | +0.03% |
| 2026-09-07 | 3.2602 | +0.13% |
| 2026-09-06 | 3.2559 | 0.00% |
| 2026-09-05 | 3.2559 | 0.00% |
| 2026-09-04 | 3.2559 | +0.08% |
| 2026-09-03 | 3.2534 | +0.27% |
| 2026-09-02 | 3.2446 | +0.17% |
| 2026-09-01 | 3.2389 | -0.28% |
| 2026-08-31 | 3.2482 | -0.04% |
| 2026-08-30 | 3.2494 | 0.00% |
| 2026-08-29 | 3.2494 | 0.00% |
| 2026-08-28 | 3.2494 | — |
AUD to RON conversion table
1 AUD3.2531 RON
5 AUD16.2654 RON
10 AUD32.5308 RON
25 AUD81.3271 RON
50 AUD162.6541 RON
100 AUD325.3083 RON
500 AUD1,626.5413 RON
1,000 AUD3,253.0826 RON
5,000 AUD16,265.413 RON
10,000 AUD32,530.826 RON
Get the AUD/RON rate in your app
One GET request returns the latest AUD → 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/AUD/RON"fetch('https://rate-api.com/api/v1/pair/AUD/RON', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} RON`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/RON",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} RON")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/RON');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} RON\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "RON"
},
"rate": 3.2531,
"timestamp": 1790429275,
"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 AUDRomanian Leu → Australian Dollar0.3074Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.