Convert AUD to UAH
Australian Dollar → Ukrainian Hryvnia
1 AUD = 31.524444 UAH(1 UAH = 0.0317214 AUD)
Currency converter
1 AUD =
31.5244 UAH
AUD to UAH: last 30 days
Over the last 30 days, 1 AUD traded between 31.5244 and 32.2442 UAH, averaging 31.8983 UAH. The AUD/UAH rate is down 1.77% since 2026-08-29.
- 30-day high
- 32.2442
- 2026-09-09
- 30-day low
- 31.5244
- 2026-09-25
- 30-day average
- 31.8983
- Days with data: 30
- 30-day change
- -1.77%
- since 2026-08-29
32.2442
31.52442026-08-29 → 2026-09-27
| Date | 1 AUD in UAH | Daily change |
|---|---|---|
| 2026-09-27 | 31.5244 | 0.00% |
| 2026-09-26 | 31.5244 | 0.00% |
| 2026-09-25 | 31.5244 | -0.24% |
| 2026-09-24 | 31.6009 | -0.32% |
| 2026-09-23 | 31.7022 | -0.41% |
| 2026-09-22 | 31.8314 | -0.28% |
| 2026-09-21 | 31.9207 | +0.36% |
| 2026-09-20 | 31.8049 | +0.00% |
| 2026-09-19 | 31.8035 | -0.03% |
| 2026-09-18 | 31.8125 | +0.12% |
| 2026-09-17 | 31.7737 | -0.19% |
| 2026-09-16 | 31.8337 | -0.05% |
| 2026-09-15 | 31.8483 | +0.33% |
| 2026-09-14 | 31.7446 | -0.76% |
| 2026-09-13 | 31.9867 | +0.17% |
| Date | 1 AUD in UAH | Daily change |
|---|---|---|
| 2026-09-12 | 31.9334 | +0.02% |
| 2026-09-11 | 31.9259 | -0.54% |
| 2026-09-10 | 32.1004 | -0.45% |
| 2026-09-09 | 32.2442 | +0.63% |
| 2026-09-08 | 32.0434 | -0.52% |
| 2026-09-07 | 32.2115 | +0.23% |
| 2026-09-06 | 32.138 | +0.18% |
| 2026-09-05 | 32.0797 | -0.32% |
| 2026-09-04 | 32.1842 | +0.29% |
| 2026-09-03 | 32.0897 | +0.81% |
| 2026-09-02 | 31.8306 | +0.19% |
| 2026-09-01 | 31.7716 | -0.71% |
| 2026-08-31 | 32.0004 | -0.21% |
| 2026-08-30 | 32.0674 | -0.08% |
| 2026-08-29 | 32.0934 | — |
AUD to UAH conversion table
1 AUD31.5244 UAH
5 AUD157.6222 UAH
10 AUD315.2444 UAH
25 AUD788.1111 UAH
50 AUD1,576.2222 UAH
100 AUD3,152.4444 UAH
500 AUD15,762.222 UAH
1,000 AUD31,524.444 UAH
5,000 AUD157,622.22 UAH
10,000 AUD315,244.44 UAH
Get the AUD/UAH rate in your app
One GET request returns the latest AUD → UAH 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/UAH"fetch('https://rate-api.com/api/v1/pair/AUD/UAH', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} UAH`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/UAH",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} UAH")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/UAH');
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']} UAH\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "UAH"
},
"rate": 31.5244,
"timestamp": 1790470774,
"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
UAH to AUDUkrainian Hryvnia → Australian Dollar0.031721Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.