Convert AUD to GYD
Australian Dollar → Guyanaese Dollar
1 AUD = 147.06403 GYD(1 GYD = 0.00679976 AUD)
Currency converter
1 AUD =
147.064 GYD
AUD to GYD: last 30 days
Over the last 30 days, 1 AUD traded between 147.064 and 150.9303 GYD, averaging 149.5703 GYD. The AUD/GYD rate is down 2.18% since 2026-08-28.
- 30-day high
- 150.9303
- 2026-09-07
- 30-day low
- 147.064
- 2026-09-25
- 30-day average
- 149.5703
- Days with data: 30
- 30-day change
- -2.18%
- since 2026-08-28
150.9303
147.0642026-08-28 → 2026-09-26
| Date | 1 AUD in GYD | Daily change |
|---|---|---|
| 2026-09-26 | 147.064 | 0.00% |
| 2026-09-25 | 147.064 | -0.31% |
| 2026-09-24 | 147.5218 | -0.33% |
| 2026-09-23 | 148.0149 | -0.53% |
| 2026-09-22 | 148.8076 | -0.29% |
| 2026-09-21 | 149.234 | +0.10% |
| 2026-09-20 | 149.0905 | +0.23% |
| 2026-09-19 | 148.7495 | -0.11% |
| 2026-09-18 | 148.9184 | -0.51% |
| 2026-09-17 | 149.6746 | +0.37% |
| 2026-09-16 | 149.1236 | +0.12% |
| 2026-09-15 | 148.9522 | -0.11% |
| 2026-09-14 | 149.1183 | -0.53% |
| 2026-09-13 | 149.9136 | +0.10% |
| 2026-09-12 | 149.7582 | -0.31% |
| Date | 1 AUD in GYD | Daily change |
|---|---|---|
| 2026-09-11 | 150.2261 | -0.06% |
| 2026-09-10 | 150.3092 | -0.40% |
| 2026-09-09 | 150.9115 | +0.00% |
| 2026-09-08 | 150.9042 | -0.02% |
| 2026-09-07 | 150.9303 | +0.12% |
| 2026-09-06 | 150.7446 | +0.20% |
| 2026-09-05 | 150.4441 | +0.03% |
| 2026-09-04 | 150.3981 | +0.08% |
| 2026-09-03 | 150.2792 | +0.43% |
| 2026-09-02 | 149.6297 | +0.24% |
| 2026-09-01 | 149.266 | -0.84% |
| 2026-08-31 | 150.5358 | -0.01% |
| 2026-08-30 | 150.5533 | -0.05% |
| 2026-08-29 | 150.6247 | +0.18% |
| 2026-08-28 | 150.3475 | — |
AUD to GYD conversion table
1 AUD147.064 GYD
5 AUD735.3202 GYD
10 AUD1,470.6403 GYD
25 AUD3,676.6008 GYD
50 AUD7,353.2015 GYD
100 AUD14,706.403 GYD
500 AUD73,532.015 GYD
1,000 AUD147,064.03 GYD
5,000 AUD735,320.15 GYD
10,000 AUD1,470,640.3 GYD
Get the AUD/GYD rate in your app
One GET request returns the latest AUD → GYD 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/GYD"fetch('https://rate-api.com/api/v1/pair/AUD/GYD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} GYD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/GYD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} GYD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/GYD');
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']} GYD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "GYD"
},
"rate": 147.064,
"timestamp": 1790429360,
"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
GYD to AUDGuyanaese Dollar → Australian Dollar0.0067998Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.