Convert GBP to AUD
British Pound → Australian Dollar
1 GBP = 1.88506 AUD(1 AUD = 0.530487 GBP)
Currency converter
1 GBP =
1.8851 AUD
GBP to AUD: last 30 days
Over the last 30 days, 1 GBP traded between 1.8742 and 1.8948 AUD, averaging 1.8823 AUD. The GBP/AUD rate is down 0.15% since 2026-08-28.
- 30-day high
- 1.8948
- 2026-09-01
- 30-day low
- 1.8742
- 2026-09-18
- 30-day average
- 1.8823
- Days with data: 30
- 30-day change
- -0.15%
- since 2026-08-28
1.8948
1.87422026-08-28 → 2026-09-26
| Date | 1 GBP in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 1.8851 | 0.00% |
| 2026-09-25 | 1.8851 | +0.20% |
| 2026-09-24 | 1.8814 | +0.15% |
| 2026-09-23 | 1.8785 | -0.05% |
| 2026-09-22 | 1.8794 | +0.15% |
| 2026-09-21 | 1.8766 | +0.13% |
| 2026-09-20 | 1.8742 | 0.00% |
| 2026-09-19 | 1.8742 | 0.00% |
| 2026-09-18 | 1.8742 | -0.33% |
| 2026-09-17 | 1.8803 | -0.33% |
| 2026-09-16 | 1.8866 | -0.30% |
| 2026-09-15 | 1.8922 | -0.03% |
| 2026-09-14 | 1.8927 | +0.50% |
| 2026-09-13 | 1.8833 | 0.00% |
| 2026-09-12 | 1.8833 | 0.00% |
| Date | 1 GBP in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 1.8833 | +0.08% |
| 2026-09-10 | 1.8818 | +0.23% |
| 2026-09-09 | 1.8775 | -0.00% |
| 2026-09-08 | 1.8775 | +0.11% |
| 2026-09-07 | 1.8755 | -0.15% |
| 2026-09-06 | 1.8782 | 0.00% |
| 2026-09-05 | 1.8782 | 0.00% |
| 2026-09-04 | 1.8782 | +0.10% |
| 2026-09-03 | 1.8764 | -0.53% |
| 2026-09-02 | 1.8864 | -0.44% |
| 2026-09-01 | 1.8948 | +0.23% |
| 2026-08-31 | 1.8905 | +0.14% |
| 2026-08-30 | 1.8878 | 0.00% |
| 2026-08-29 | 1.8878 | 0.00% |
| 2026-08-28 | 1.8878 | — |
GBP to AUD conversion table
1 GBP1.8851 AUD
5 GBP9.4253 AUD
10 GBP18.8506 AUD
25 GBP47.1265 AUD
50 GBP94.253 AUD
100 GBP188.506 AUD
500 GBP942.5301 AUD
1,000 GBP1,885.0601 AUD
5,000 GBP9,425.3007 AUD
10,000 GBP18,850.601 AUD
Get the GBP/AUD rate in your app
One GET request returns the latest GBP → 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/GBP/AUD"fetch('https://rate-api.com/api/v1/pair/GBP/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "AUD"
},
"rate": 1.8851,
"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
AUD to GBPAustralian Dollar → British Pound0.53049Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.