Convert RUB to AUD
Russian Ruble → Australian Dollar
1 RUB = 0.0168568 AUD(1 AUD = 59.323075 RUB)
Currency converter
1 RUB =
0.016857 AUD
RUB to AUD: last 30 days
Over the last 30 days, 1 RUB traded between 0.015925 and 0.016857 AUD, averaging 0.016442 AUD. The RUB/AUD rate is up 4.52% since 2026-08-29.
- 30-day high
- 0.016857
- 2026-09-26
- 30-day low
- 0.015925
- 2026-09-03
- 30-day average
- 0.016442
- Days with data: 30
- 30-day change
- +4.52%
- since 2026-08-29
0.016857
0.0159252026-08-29 → 2026-09-27
| Date | 1 RUB in AUD | Daily change |
|---|---|---|
| 2026-09-27 | 0.016857 | 0.00% |
| 2026-09-26 | 0.016857 | +0.75% |
| 2026-09-25 | 0.016732 | -0.25% |
| 2026-09-24 | 0.016775 | -0.06% |
| 2026-09-23 | 0.016785 | -0.04% |
| 2026-09-22 | 0.016791 | +0.87% |
| 2026-09-21 | 0.016646 | -0.34% |
| 2026-09-20 | 0.016703 | +0.37% |
| 2026-09-19 | 0.016642 | +0.12% |
| 2026-09-18 | 0.016621 | -0.41% |
| 2026-09-17 | 0.016689 | +0.22% |
| 2026-09-16 | 0.016652 | +0.28% |
| 2026-09-15 | 0.016606 | +0.08% |
| 2026-09-14 | 0.016592 | +0.31% |
| 2026-09-13 | 0.016542 | -0.11% |
| Date | 1 RUB in AUD | Daily change |
|---|---|---|
| 2026-09-12 | 0.01656 | -0.27% |
| 2026-09-11 | 0.016605 | +1.41% |
| 2026-09-10 | 0.016375 | +1.56% |
| 2026-09-09 | 0.016123 | +0.31% |
| 2026-09-08 | 0.016073 | +0.43% |
| 2026-09-07 | 0.016004 | -0.21% |
| 2026-09-06 | 0.016038 | -0.85% |
| 2026-09-05 | 0.016175 | +0.97% |
| 2026-09-04 | 0.016019 | +0.59% |
| 2026-09-03 | 0.015925 | -1.17% |
| 2026-09-02 | 0.016114 | -0.67% |
| 2026-09-01 | 0.016222 | -0.12% |
| 2026-08-31 | 0.016242 | +0.52% |
| 2026-08-30 | 0.016158 | +0.19% |
| 2026-08-29 | 0.016128 | — |
RUB to AUD conversion table
1 RUB0.016857 AUD
5 RUB0.084284 AUD
10 RUB0.16857 AUD
25 RUB0.42142 AUD
50 RUB0.84284 AUD
100 RUB1.6857 AUD
500 RUB8.4284 AUD
1,000 RUB16.8568 AUD
5,000 RUB84.2842 AUD
10,000 RUB168.5685 AUD
Get the RUB/AUD rate in your app
One GET request returns the latest RUB → AUD 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/RUB/AUD"fetch('https://rate-api.com/api/v1/pair/RUB/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "AUD"
},
"rate": 0.0169,
"timestamp": 1790470773,
"date": "2026-09-27"
}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
AUD to RUBAustralian Dollar → Russian Ruble59.3231Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.