Convert UAH to AUD
Ukrainian Hryvnia → Australian Dollar
1 UAH = 0.0317214 AUD(1 AUD = 31.524444 UAH)
Currency converter
1 UAH =
0.031721 AUD
UAH to AUD: last 30 days
Over the last 30 days, 1 UAH traded between 0.031013 and 0.031721 AUD, averaging 0.031333 AUD. The UAH/AUD rate is up 1.70% since 2026-08-28.
- 30-day high
- 0.031721
- 2026-09-25
- 30-day low
- 0.031013
- 2026-09-09
- 30-day average
- 0.031333
- Days with data: 30
- 30-day change
- +1.70%
- since 2026-08-28
0.031721
0.0310132026-08-28 → 2026-09-26
| Date | 1 UAH in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.031721 | 0.00% |
| 2026-09-25 | 0.031721 | +0.24% |
| 2026-09-24 | 0.031645 | +0.32% |
| 2026-09-23 | 0.031544 | +0.41% |
| 2026-09-22 | 0.031416 | +0.28% |
| 2026-09-21 | 0.031328 | -0.36% |
| 2026-09-20 | 0.031442 | -0.00% |
| 2026-09-19 | 0.031443 | +0.03% |
| 2026-09-18 | 0.031434 | -0.12% |
| 2026-09-17 | 0.031473 | +0.19% |
| 2026-09-16 | 0.031413 | +0.05% |
| 2026-09-15 | 0.031399 | -0.33% |
| 2026-09-14 | 0.031501 | +0.76% |
| 2026-09-13 | 0.031263 | -0.17% |
| 2026-09-12 | 0.031315 | -0.02% |
| Date | 1 UAH in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.031323 | +0.55% |
| 2026-09-10 | 0.031152 | +0.45% |
| 2026-09-09 | 0.031013 | -0.62% |
| 2026-09-08 | 0.031208 | +0.52% |
| 2026-09-07 | 0.031045 | -0.23% |
| 2026-09-06 | 0.031116 | -0.18% |
| 2026-09-05 | 0.031172 | +0.33% |
| 2026-09-04 | 0.031071 | -0.29% |
| 2026-09-03 | 0.031163 | -0.81% |
| 2026-09-02 | 0.031416 | -0.19% |
| 2026-09-01 | 0.031475 | +0.72% |
| 2026-08-31 | 0.03125 | +0.21% |
| 2026-08-30 | 0.031184 | +0.08% |
| 2026-08-29 | 0.031159 | -0.10% |
| 2026-08-28 | 0.031191 | — |
UAH to AUD conversion table
1 UAH0.031721 AUD
5 UAH0.15861 AUD
10 UAH0.31721 AUD
25 UAH0.79304 AUD
50 UAH1.5861 AUD
100 UAH3.1721 AUD
500 UAH15.8607 AUD
1,000 UAH31.7214 AUD
5,000 UAH158.6071 AUD
10,000 UAH317.2142 AUD
Get the UAH/AUD rate in your app
One GET request returns the latest UAH → 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/UAH/AUD"fetch('https://rate-api.com/api/v1/pair/UAH/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 UAH = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/UAH/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 UAH = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/UAH/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 UAH = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "UAH",
"to": "AUD"
},
"rate": 0.0317,
"timestamp": 1790435098,
"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
AUD to UAHAustralian Dollar → Ukrainian Hryvnia31.5244Convert UAH to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.