Convert AUD to RUB
Australian Dollar → Russian Ruble
1 AUD = 59.765967 RUB(1 RUB = 0.0167319 AUD)
Currency converter
1 AUD =
59.766 RUB
AUD to RUB: last 30 days
Over the last 30 days, 1 AUD traded between 59.5551 and 62.7948 RUB, averaging 60.9282 RUB. The AUD/RUB rate is down 2.81% since 2026-08-28.
- 30-day high
- 62.7948
- 2026-09-03
- 30-day low
- 59.5551
- 2026-09-22
- 30-day average
- 60.9282
- Days with data: 30
- 30-day change
- -2.81%
- since 2026-08-28
62.7948
59.55512026-08-28 → 2026-09-26
| Date | 1 AUD in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 59.766 | 0.00% |
| 2026-09-25 | 59.766 | +0.25% |
| 2026-09-24 | 59.6143 | +0.06% |
| 2026-09-23 | 59.5763 | +0.04% |
| 2026-09-22 | 59.5551 | -0.87% |
| 2026-09-21 | 60.0749 | +0.35% |
| 2026-09-20 | 59.8683 | -0.37% |
| 2026-09-19 | 60.0903 | -0.12% |
| 2026-09-18 | 60.1635 | +0.41% |
| 2026-09-17 | 59.9197 | -0.22% |
| 2026-09-16 | 60.0512 | -0.28% |
| 2026-09-15 | 60.2191 | -0.08% |
| 2026-09-14 | 60.2695 | -0.30% |
| 2026-09-13 | 60.4536 | +0.11% |
| 2026-09-12 | 60.3866 | +0.27% |
| Date | 1 AUD in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 60.2211 | -1.39% |
| 2026-09-10 | 61.0688 | -1.54% |
| 2026-09-09 | 62.0242 | -0.31% |
| 2026-09-08 | 62.2157 | -0.43% |
| 2026-09-07 | 62.486 | +0.21% |
| 2026-09-06 | 62.3532 | +0.86% |
| 2026-09-05 | 61.8234 | -0.96% |
| 2026-09-04 | 62.4251 | -0.59% |
| 2026-09-03 | 62.7948 | +1.19% |
| 2026-09-02 | 62.0576 | +0.67% |
| 2026-09-01 | 61.6434 | +0.12% |
| 2026-08-31 | 61.5702 | -0.51% |
| 2026-08-30 | 61.8888 | -0.19% |
| 2026-08-29 | 62.0041 | +0.83% |
| 2026-08-28 | 61.4943 | — |
AUD to RUB conversion table
1 AUD59.766 RUB
5 AUD298.8298 RUB
10 AUD597.6597 RUB
25 AUD1,494.1492 RUB
50 AUD2,988.2984 RUB
100 AUD5,976.5967 RUB
500 AUD29,882.984 RUB
1,000 AUD59,765.967 RUB
5,000 AUD298,829.84 RUB
10,000 AUD597,659.67 RUB
Get the AUD/RUB rate in your app
One GET request returns the latest AUD → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/AUD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "RUB"
},
"rate": 59.766,
"timestamp": 1790429285,
"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
RUB to AUDRussian Ruble → Australian Dollar0.016732Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.