Convert AUD to ZAR
Australian Dollar → South African Rand
1 AUD = 11.454871 ZAR(1 ZAR = 0.0872991 AUD)
Currency converter
1 AUD =
11.4549 ZAR
AUD to ZAR: last 30 days
Over the last 30 days, 1 AUD traded between 11.4549 and 11.6055 ZAR, averaging 11.5497 ZAR. The AUD/ZAR rate is down 0.50% since 2026-08-28.
- 30-day high
- 11.6055
- 2026-09-21
- 30-day low
- 11.4549
- 2026-09-25
- 30-day average
- 11.5497
- Days with data: 30
- 30-day change
- -0.50%
- since 2026-08-28
11.6055
11.45492026-08-28 → 2026-09-26
| Date | 1 AUD in ZAR | Daily change |
|---|---|---|
| 2026-09-26 | 11.4549 | 0.00% |
| 2026-09-25 | 11.4549 | -0.82% |
| 2026-09-24 | 11.5495 | -0.03% |
| 2026-09-23 | 11.5531 | +0.04% |
| 2026-09-22 | 11.5485 | -0.49% |
| 2026-09-21 | 11.6055 | +0.17% |
| 2026-09-20 | 11.5859 | 0.00% |
| 2026-09-19 | 11.5859 | 0.00% |
| 2026-09-18 | 11.5859 | +0.21% |
| 2026-09-17 | 11.5619 | -0.35% |
| 2026-09-16 | 11.6026 | +0.06% |
| 2026-09-15 | 11.5956 | +0.09% |
| 2026-09-14 | 11.5851 | -0.04% |
| 2026-09-13 | 11.5899 | 0.00% |
| 2026-09-12 | 11.5899 | 0.00% |
| Date | 1 AUD in ZAR | Daily change |
|---|---|---|
| 2026-09-11 | 11.5899 | -0.10% |
| 2026-09-10 | 11.6012 | +0.11% |
| 2026-09-09 | 11.5886 | +0.24% |
| 2026-09-08 | 11.5605 | +0.20% |
| 2026-09-07 | 11.5372 | +0.31% |
| 2026-09-06 | 11.5021 | 0.00% |
| 2026-09-05 | 11.5021 | 0.00% |
| 2026-09-04 | 11.5021 | -0.29% |
| 2026-09-03 | 11.536 | +0.28% |
| 2026-09-02 | 11.5034 | -0.29% |
| 2026-09-01 | 11.5374 | -0.04% |
| 2026-08-31 | 11.5421 | +0.25% |
| 2026-08-30 | 11.5129 | 0.00% |
| 2026-08-29 | 11.5129 | 0.00% |
| 2026-08-28 | 11.5129 | — |
AUD to ZAR conversion table
1 AUD11.4549 ZAR
5 AUD57.2744 ZAR
10 AUD114.5487 ZAR
25 AUD286.3718 ZAR
50 AUD572.7435 ZAR
100 AUD1,145.4871 ZAR
500 AUD5,727.4353 ZAR
1,000 AUD11,454.871 ZAR
5,000 AUD57,274.353 ZAR
10,000 AUD114,548.71 ZAR
Get the AUD/ZAR rate in your app
One GET request returns the latest AUD → ZAR 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/ZAR"fetch('https://rate-api.com/api/v1/pair/AUD/ZAR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} ZAR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/ZAR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} ZAR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/ZAR');
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']} ZAR\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "ZAR"
},
"rate": 11.4549,
"timestamp": 1790429291,
"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
ZAR to AUDSouth African Rand → Australian Dollar0.087299Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.