Convert GEL to AUD
Georgian Lari → Australian Dollar
1 GEL = 0.546909 AUD(1 AUD = 1.828458 GEL)
Currency converter
1 GEL =
0.54691 AUD
GEL to AUD: last 30 days
Over the last 30 days, 1 GEL traded between 0.53172 and 0.54691 AUD, averaging 0.53758 AUD. The GEL/AUD rate is up 2.50% since 2026-08-28.
- 30-day high
- 0.54691
- 2026-09-25
- 30-day low
- 0.53172
- 2026-09-04
- 30-day average
- 0.53758
- Days with data: 30
- 30-day change
- +2.50%
- since 2026-08-28
0.54691
0.531722026-08-28 → 2026-09-26
| Date | 1 GEL in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.54691 | 0.00% |
| 2026-09-25 | 0.54691 | +0.28% |
| 2026-09-24 | 0.54541 | +0.33% |
| 2026-09-23 | 0.54359 | +0.48% |
| 2026-09-22 | 0.54101 | +0.35% |
| 2026-09-21 | 0.53911 | -0.22% |
| 2026-09-20 | 0.54027 | +0.03% |
| 2026-09-19 | 0.54013 | -0.29% |
| 2026-09-18 | 0.54172 | +0.18% |
| 2026-09-17 | 0.54077 | +0.23% |
| 2026-09-16 | 0.53955 | -0.09% |
| 2026-09-15 | 0.54005 | +0.03% |
| 2026-09-14 | 0.53986 | +0.82% |
| 2026-09-13 | 0.53545 | -0.08% |
| 2026-09-12 | 0.5359 | -0.02% |
| Date | 1 GEL in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.536 | +0.21% |
| 2026-09-10 | 0.53489 | +0.54% |
| 2026-09-09 | 0.53202 | -0.10% |
| 2026-09-08 | 0.53255 | -0.08% |
| 2026-09-07 | 0.53299 | +0.04% |
| 2026-09-06 | 0.53278 | +0.04% |
| 2026-09-05 | 0.53258 | +0.16% |
| 2026-09-04 | 0.53172 | -0.32% |
| 2026-09-03 | 0.53343 | -0.50% |
| 2026-09-02 | 0.53612 | -0.20% |
| 2026-09-01 | 0.5372 | +0.08% |
| 2026-08-31 | 0.53679 | +0.51% |
| 2026-08-30 | 0.53408 | -0.00% |
| 2026-08-29 | 0.53408 | +0.09% |
| 2026-08-28 | 0.53359 | — |
GEL to AUD conversion table
1 GEL0.54691 AUD
5 GEL2.7345 AUD
10 GEL5.4691 AUD
25 GEL13.6727 AUD
50 GEL27.3454 AUD
100 GEL54.6909 AUD
500 GEL273.4545 AUD
1,000 GEL546.909 AUD
5,000 GEL2,734.5449 AUD
10,000 GEL5,469.0898 AUD
Get the GEL/AUD rate in your app
One GET request returns the latest GEL → 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/GEL/AUD"fetch('https://rate-api.com/api/v1/pair/GEL/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GEL = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GEL/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GEL = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GEL/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GEL = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "GEL",
"to": "AUD"
},
"rate": 0.5469,
"timestamp": 1790432087,
"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 GELAustralian Dollar → Georgian Lari1.8285Convert GEL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.