Convert SGD to AUD
Singapore Dollar → Australian Dollar
1 SGD = 1.113782 AUD(1 AUD = 0.897842 SGD)
Currency converter
1 SGD =
1.1138 AUD
SGD to AUD: last 30 days
Over the last 30 days, 1 SGD traded between 1.0933 and 1.1138 AUD, averaging 1.0999 AUD. The SGD/AUD rate is up 1.87% since 2026-08-28.
- 30-day high
- 1.1138
- 2026-09-25
- 30-day low
- 1.0933
- 2026-08-28
- 30-day average
- 1.0999
- Days with data: 30
- 30-day change
- +1.87%
- since 2026-08-28
1.1138
1.09332026-08-28 → 2026-09-26
| Date | 1 SGD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 1.1138 | 0.00% |
| 2026-09-25 | 1.1138 | +0.17% |
| 2026-09-24 | 1.1119 | +0.45% |
| 2026-09-23 | 1.1069 | +0.32% |
| 2026-09-22 | 1.1033 | +0.39% |
| 2026-09-21 | 1.099 | +0.03% |
| 2026-09-20 | 1.0986 | 0.00% |
| 2026-09-19 | 1.0986 | 0.00% |
| 2026-09-18 | 1.0986 | -0.33% |
| 2026-09-17 | 1.1023 | +0.10% |
| 2026-09-16 | 1.1012 | -0.16% |
| 2026-09-15 | 1.1029 | -0.10% |
| 2026-09-14 | 1.104 | +0.40% |
| 2026-09-13 | 1.0996 | 0.00% |
| 2026-09-12 | 1.0996 | 0.00% |
| Date | 1 SGD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 1.0996 | +0.05% |
| 2026-09-10 | 1.099 | +0.32% |
| 2026-09-09 | 1.0955 | +0.05% |
| 2026-09-08 | 1.095 | +0.03% |
| 2026-09-07 | 1.0947 | -0.10% |
| 2026-09-06 | 1.0957 | 0.00% |
| 2026-09-05 | 1.0957 | 0.00% |
| 2026-09-04 | 1.0957 | -0.07% |
| 2026-09-03 | 1.0965 | -0.21% |
| 2026-09-02 | 1.0989 | -0.07% |
| 2026-09-01 | 1.0997 | +0.23% |
| 2026-08-31 | 1.0971 | +0.35% |
| 2026-08-30 | 1.0933 | 0.00% |
| 2026-08-29 | 1.0933 | 0.00% |
| 2026-08-28 | 1.0933 | — |
SGD to AUD conversion table
1 SGD1.1138 AUD
5 SGD5.5689 AUD
10 SGD11.1378 AUD
25 SGD27.8445 AUD
50 SGD55.6891 AUD
100 SGD111.3782 AUD
500 SGD556.8908 AUD
1,000 SGD1,113.7815 AUD
5,000 SGD5,568.9075 AUD
10,000 SGD11,137.815 AUD
Get the SGD/AUD rate in your app
One GET request returns the latest SGD → 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/SGD/AUD"fetch('https://rate-api.com/api/v1/pair/SGD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SGD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SGD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SGD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SGD/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SGD = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "SGD",
"to": "AUD"
},
"rate": 1.1138,
"timestamp": 1790432093,
"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 SGDAustralian Dollar → Singapore Dollar0.89784Convert SGD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.