Convert AUD to GBP
Australian Dollar → British Pound
1 AUD = 0.530487 GBP(1 GBP = 1.88506 AUD)
Currency converter
1 AUD =
0.53049 GBP
AUD to GBP: last 30 days
Over the last 30 days, 1 AUD traded between 0.52777 and 0.53356 GBP, averaging 0.53127 GBP. The AUD/GBP rate is up 0.15% since 2026-08-28.
- 30-day high
- 0.53356
- 2026-09-18
- 30-day low
- 0.52777
- 2026-09-01
- 30-day average
- 0.53127
- Days with data: 30
- 30-day change
- +0.15%
- since 2026-08-28
0.53356
0.527772026-08-28 → 2026-09-26
| Date | 1 AUD in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.53049 | 0.00% |
| 2026-09-25 | 0.53049 | -0.20% |
| 2026-09-24 | 0.53153 | -0.15% |
| 2026-09-23 | 0.53233 | +0.05% |
| 2026-09-22 | 0.53208 | -0.15% |
| 2026-09-21 | 0.53288 | -0.13% |
| 2026-09-20 | 0.53356 | 0.00% |
| 2026-09-19 | 0.53356 | 0.00% |
| 2026-09-18 | 0.53356 | +0.33% |
| 2026-09-17 | 0.53182 | +0.34% |
| 2026-09-16 | 0.53004 | +0.30% |
| 2026-09-15 | 0.52847 | +0.03% |
| 2026-09-14 | 0.52833 | -0.50% |
| 2026-09-13 | 0.53099 | 0.00% |
| 2026-09-12 | 0.53099 | 0.00% |
| Date | 1 AUD in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.53099 | -0.08% |
| 2026-09-10 | 0.53142 | -0.23% |
| 2026-09-09 | 0.53262 | +0.00% |
| 2026-09-08 | 0.53261 | -0.11% |
| 2026-09-07 | 0.53319 | +0.15% |
| 2026-09-06 | 0.53242 | 0.00% |
| 2026-09-05 | 0.53242 | 0.00% |
| 2026-09-04 | 0.53242 | -0.10% |
| 2026-09-03 | 0.53294 | +0.54% |
| 2026-09-02 | 0.53011 | +0.44% |
| 2026-09-01 | 0.52777 | -0.23% |
| 2026-08-31 | 0.52897 | -0.14% |
| 2026-08-30 | 0.52971 | 0.00% |
| 2026-08-29 | 0.52971 | 0.00% |
| 2026-08-28 | 0.52971 | — |
AUD to GBP conversion table
1 AUD0.53049 GBP
5 AUD2.6524 GBP
10 AUD5.3049 GBP
25 AUD13.2622 GBP
50 AUD26.5244 GBP
100 AUD53.0487 GBP
500 AUD265.2435 GBP
1,000 AUD530.4871 GBP
5,000 AUD2,652.4353 GBP
10,000 AUD5,304.8705 GBP
Get the AUD/GBP rate in your app
One GET request returns the latest AUD → GBP 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/GBP"fetch('https://rate-api.com/api/v1/pair/AUD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/GBP');
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']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "GBP"
},
"rate": 0.5305,
"timestamp": 1790429368,
"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
GBP to AUDBritish Pound → Australian Dollar1.8851Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.