Convert AUD to GEL
Australian Dollar → Georgian Lari
1 AUD = 1.828458 GEL(1 GEL = 0.546909 AUD)
Currency converter
1 AUD =
1.8285 GEL
AUD to GEL: last 30 days
Over the last 30 days, 1 AUD traded between 1.8285 and 1.8807 GEL, averaging 1.8603 GEL. The AUD/GEL rate is down 2.43% since 2026-08-28.
- 30-day high
- 1.8807
- 2026-09-04
- 30-day low
- 1.8285
- 2026-09-25
- 30-day average
- 1.8603
- Days with data: 30
- 30-day change
- -2.43%
- since 2026-08-28
1.8807
1.82852026-08-28 → 2026-09-26
| Date | 1 AUD in GEL | Daily change |
|---|---|---|
| 2026-09-26 | 1.8285 | 0.00% |
| 2026-09-25 | 1.8285 | -0.27% |
| 2026-09-24 | 1.8335 | -0.33% |
| 2026-09-23 | 1.8396 | -0.48% |
| 2026-09-22 | 1.8484 | -0.35% |
| 2026-09-21 | 1.8549 | +0.22% |
| 2026-09-20 | 1.8509 | -0.03% |
| 2026-09-19 | 1.8514 | +0.29% |
| 2026-09-18 | 1.846 | -0.18% |
| 2026-09-17 | 1.8492 | -0.23% |
| 2026-09-16 | 1.8534 | +0.09% |
| 2026-09-15 | 1.8517 | -0.03% |
| 2026-09-14 | 1.8523 | -0.82% |
| 2026-09-13 | 1.8676 | +0.08% |
| 2026-09-12 | 1.866 | +0.02% |
| Date | 1 AUD in GEL | Daily change |
|---|---|---|
| 2026-09-11 | 1.8657 | -0.21% |
| 2026-09-10 | 1.8695 | -0.54% |
| 2026-09-09 | 1.8796 | +0.10% |
| 2026-09-08 | 1.8778 | +0.08% |
| 2026-09-07 | 1.8762 | -0.04% |
| 2026-09-06 | 1.8769 | -0.04% |
| 2026-09-05 | 1.8777 | -0.16% |
| 2026-09-04 | 1.8807 | +0.32% |
| 2026-09-03 | 1.8747 | +0.50% |
| 2026-09-02 | 1.8653 | +0.20% |
| 2026-09-01 | 1.8615 | -0.08% |
| 2026-08-31 | 1.8629 | -0.50% |
| 2026-08-30 | 1.8724 | +0.00% |
| 2026-08-29 | 1.8724 | -0.09% |
| 2026-08-28 | 1.8741 | — |
AUD to GEL conversion table
1 AUD1.8285 GEL
5 AUD9.1423 GEL
10 AUD18.2846 GEL
25 AUD45.7114 GEL
50 AUD91.4229 GEL
100 AUD182.8458 GEL
500 AUD914.2289 GEL
1,000 AUD1,828.4578 GEL
5,000 AUD9,142.2891 GEL
10,000 AUD18,284.578 GEL
Get the AUD/GEL rate in your app
One GET request returns the latest AUD → GEL 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/GEL"fetch('https://rate-api.com/api/v1/pair/AUD/GEL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} GEL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/GEL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} GEL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/GEL');
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']} GEL\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "GEL"
},
"rate": 1.8285,
"timestamp": 1790429340,
"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
GEL to AUDGeorgian Lari → Australian Dollar0.54691Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.