Convert AUD to UGX
Australian Dollar → Ugandan Shilling
1 AUD = 2,761.7284 UGX(1 UGX = 0.000362092 AUD)
Currency converter
1 AUD =
2,761.7284 UGX
AUD to UGX: last 30 days
Over the last 30 days, 1 AUD traded between 2,699.3073 and 2,809.8356 UGX, averaging 2,748.961 UGX. The AUD/UGX rate is up 1.92% since 2026-08-28.
- 30-day high
- 2,809.8356
- 2026-09-21
- 30-day low
- 2,699.3073
- 2026-09-02
- 30-day average
- 2,748.961
- Days with data: 30
- 30-day change
- +1.92%
- since 2026-08-28
2,809.8356
2,699.30732026-08-28 → 2026-09-26
| Date | 1 AUD in UGX | Daily change |
|---|---|---|
| 2026-09-26 | 2,761.7284 | 0.00% |
| 2026-09-25 | 2,761.7284 | +0.63% |
| 2026-09-24 | 2,744.4785 | -0.58% |
| 2026-09-23 | 2,760.4622 | -1.16% |
| 2026-09-22 | 2,792.8204 | -0.61% |
| 2026-09-21 | 2,809.8356 | +0.28% |
| 2026-09-20 | 2,801.9441 | +0.06% |
| 2026-09-19 | 2,800.3171 | +0.09% |
| 2026-09-18 | 2,797.7631 | +0.23% |
| 2026-09-17 | 2,791.4372 | +0.12% |
| 2026-09-16 | 2,788.1077 | +0.49% |
| 2026-09-15 | 2,774.3908 | +0.59% |
| 2026-09-14 | 2,758.0036 | -0.60% |
| 2026-09-13 | 2,774.7233 | +0.04% |
| 2026-09-12 | 2,773.5467 | +0.93% |
| Date | 1 AUD in UGX | Daily change |
|---|---|---|
| 2026-09-11 | 2,747.8749 | +0.89% |
| 2026-09-10 | 2,723.545 | -0.45% |
| 2026-09-09 | 2,735.7299 | +0.36% |
| 2026-09-08 | 2,725.923 | +0.06% |
| 2026-09-07 | 2,724.2166 | +0.06% |
| 2026-09-06 | 2,722.5176 | +0.07% |
| 2026-09-05 | 2,720.7122 | -0.03% |
| 2026-09-04 | 2,721.5286 | +0.11% |
| 2026-09-03 | 2,718.6119 | +0.72% |
| 2026-09-02 | 2,699.3073 | -0.13% |
| 2026-09-01 | 2,702.8683 | +0.04% |
| 2026-08-31 | 2,701.7152 | -0.38% |
| 2026-08-30 | 2,711.9224 | +0.02% |
| 2026-08-29 | 2,711.4463 | +0.07% |
| 2026-08-28 | 2,709.6246 | — |
AUD to UGX conversion table
1 AUD2,761.7284 UGX
5 AUD13,808.642 UGX
10 AUD27,617.284 UGX
25 AUD69,043.209 UGX
50 AUD138,086.42 UGX
100 AUD276,172.84 UGX
500 AUD1,380,864.2 UGX
1,000 AUD2,761,728.4 UGX
5,000 AUD13,808,642 UGX
10,000 AUD27,617,284 UGX
Get the AUD/UGX rate in your app
One GET request returns the latest AUD → UGX 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/UGX"fetch('https://rate-api.com/api/v1/pair/AUD/UGX', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} UGX`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/UGX",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} UGX")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/UGX');
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']} UGX\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "UGX"
},
"rate": 2761.7284,
"timestamp": 1790429339,
"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
UGX to AUDUgandan Shilling → Australian Dollar0.00036209Convert AUD to other currencies
Convert other currencies to UGX
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.