Convert AUD to SGD
Australian Dollar → Singapore Dollar
1 AUD = 0.897842 SGD(1 SGD = 1.113782 AUD)
Currency converter
1 AUD =
0.89784 SGD
AUD to SGD: last 30 days
Over the last 30 days, 1 AUD traded between 0.89784 and 0.91467 SGD, averaging 0.90919 SGD. The AUD/SGD rate is down 1.84% since 2026-08-28.
- 30-day high
- 0.91467
- 2026-08-28
- 30-day low
- 0.89784
- 2026-09-25
- 30-day average
- 0.90919
- Days with data: 30
- 30-day change
- -1.84%
- since 2026-08-28
0.91467
0.897842026-08-28 → 2026-09-26
| Date | 1 AUD in SGD | Daily change |
|---|---|---|
| 2026-09-26 | 0.89784 | 0.00% |
| 2026-09-25 | 0.89784 | -0.17% |
| 2026-09-24 | 0.89936 | -0.45% |
| 2026-09-23 | 0.90344 | -0.32% |
| 2026-09-22 | 0.90636 | -0.39% |
| 2026-09-21 | 0.90992 | -0.03% |
| 2026-09-20 | 0.91022 | 0.00% |
| 2026-09-19 | 0.91022 | 0.00% |
| 2026-09-18 | 0.91022 | +0.33% |
| 2026-09-17 | 0.90723 | -0.10% |
| 2026-09-16 | 0.90814 | +0.16% |
| 2026-09-15 | 0.90673 | +0.10% |
| 2026-09-14 | 0.90582 | -0.40% |
| 2026-09-13 | 0.90941 | 0.00% |
| 2026-09-12 | 0.90941 | 0.00% |
| Date | 1 AUD in SGD | Daily change |
|---|---|---|
| 2026-09-11 | 0.90941 | -0.05% |
| 2026-09-10 | 0.9099 | -0.32% |
| 2026-09-09 | 0.9128 | -0.05% |
| 2026-09-08 | 0.91321 | -0.03% |
| 2026-09-07 | 0.9135 | +0.10% |
| 2026-09-06 | 0.91262 | 0.00% |
| 2026-09-05 | 0.91262 | 0.00% |
| 2026-09-04 | 0.91262 | +0.07% |
| 2026-09-03 | 0.91196 | +0.21% |
| 2026-09-02 | 0.91001 | +0.07% |
| 2026-09-01 | 0.90938 | -0.23% |
| 2026-08-31 | 0.91148 | -0.35% |
| 2026-08-30 | 0.91467 | 0.00% |
| 2026-08-29 | 0.91467 | 0.00% |
| 2026-08-28 | 0.91467 | — |
AUD to SGD conversion table
1 AUD0.89784 SGD
5 AUD4.4892 SGD
10 AUD8.9784 SGD
25 AUD22.4461 SGD
50 AUD44.8921 SGD
100 AUD89.7842 SGD
500 AUD448.9211 SGD
1,000 AUD897.8422 SGD
5,000 AUD4,489.2109 SGD
10,000 AUD8,978.4217 SGD
Get the AUD/SGD rate in your app
One GET request returns the latest AUD → SGD 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/SGD"fetch('https://rate-api.com/api/v1/pair/AUD/SGD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} SGD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/SGD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} SGD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/SGD');
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']} SGD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "SGD"
},
"rate": 0.8978,
"timestamp": 1790429342,
"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
SGD to AUDSingapore Dollar → Australian Dollar1.1138Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.