Convert ZAR to AUD
South African Rand → Australian Dollar
1 ZAR = 0.0872991 AUD(1 AUD = 11.454871 ZAR)
Currency converter
1 ZAR =
0.087299 AUD
ZAR to AUD: last 30 days
Over the last 30 days, 1 ZAR traded between 0.086166 and 0.087299 AUD, averaging 0.086584 AUD. The ZAR/AUD rate is up 0.51% since 2026-08-28.
- 30-day high
- 0.087299
- 2026-09-25
- 30-day low
- 0.086166
- 2026-09-21
- 30-day average
- 0.086584
- Days with data: 30
- 30-day change
- +0.51%
- since 2026-08-28
0.087299
0.0861662026-08-28 → 2026-09-26
| Date | 1 ZAR in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.087299 | 0.00% |
| 2026-09-25 | 0.087299 | +0.83% |
| 2026-09-24 | 0.086584 | +0.03% |
| 2026-09-23 | 0.086557 | -0.04% |
| 2026-09-22 | 0.086591 | +0.49% |
| 2026-09-21 | 0.086166 | -0.17% |
| 2026-09-20 | 0.086312 | 0.00% |
| 2026-09-19 | 0.086312 | 0.00% |
| 2026-09-18 | 0.086312 | -0.21% |
| 2026-09-17 | 0.086491 | +0.35% |
| 2026-09-16 | 0.086188 | -0.06% |
| 2026-09-15 | 0.08624 | -0.09% |
| 2026-09-14 | 0.086318 | +0.04% |
| 2026-09-13 | 0.086282 | 0.00% |
| 2026-09-12 | 0.086282 | 0.00% |
| Date | 1 ZAR in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.086282 | +0.10% |
| 2026-09-10 | 0.086198 | -0.11% |
| 2026-09-09 | 0.086292 | -0.24% |
| 2026-09-08 | 0.086501 | -0.20% |
| 2026-09-07 | 0.086676 | -0.30% |
| 2026-09-06 | 0.086941 | 0.00% |
| 2026-09-05 | 0.086941 | 0.00% |
| 2026-09-04 | 0.086941 | +0.29% |
| 2026-09-03 | 0.086685 | -0.28% |
| 2026-09-02 | 0.086931 | +0.30% |
| 2026-09-01 | 0.086675 | +0.04% |
| 2026-08-31 | 0.086639 | -0.25% |
| 2026-08-30 | 0.086859 | 0.00% |
| 2026-08-29 | 0.086859 | 0.00% |
| 2026-08-28 | 0.086859 | — |
ZAR to AUD conversion table
1 ZAR0.087299 AUD
5 ZAR0.4365 AUD
10 ZAR0.87299 AUD
25 ZAR2.1825 AUD
50 ZAR4.365 AUD
100 ZAR8.7299 AUD
500 ZAR43.6496 AUD
1,000 ZAR87.2991 AUD
5,000 ZAR436.4956 AUD
10,000 ZAR872.9911 AUD
Get the ZAR/AUD rate in your app
One GET request returns the latest ZAR → 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/ZAR/AUD"fetch('https://rate-api.com/api/v1/pair/ZAR/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZAR = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZAR/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZAR = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZAR/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ZAR = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "ZAR",
"to": "AUD"
},
"rate": 0.0873,
"timestamp": 1790432044,
"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 ZARAustralian Dollar → South African Rand11.4549Convert ZAR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.