Convert USD to ZAR
US Dollar → South African Rand
1 USD = 16.293782 ZAR(1 ZAR = 0.0613731 USD)
Currency converter
1 USD =
16.2938 ZAR
USD to ZAR: last 30 days
Over the last 30 days, 1 USD traded between 15.9672 and 16.4367 ZAR, averaging 16.1574 ZAR. The USD/ZAR rate is up 1.82% since 2026-08-28.
- 30-day high
- 16.4367
- 2026-09-24
- 30-day low
- 15.9672
- 2026-09-04
- 30-day average
- 16.1574
- Days with data: 30
- 30-day change
- +1.82%
- since 2026-08-28
16.4367
15.96722026-08-28 → 2026-09-26
| Date | 1 USD in ZAR | Daily change |
|---|---|---|
| 2026-09-26 | 16.2938 | 0.00% |
| 2026-09-25 | 16.2938 | -0.87% |
| 2026-09-24 | 16.4367 | +0.55% |
| 2026-09-23 | 16.3471 | +0.65% |
| 2026-09-22 | 16.2418 | -0.11% |
| 2026-09-21 | 16.2593 | -0.08% |
| 2026-09-20 | 16.2724 | 0.00% |
| 2026-09-19 | 16.2724 | 0.00% |
| 2026-09-18 | 16.2724 | +0.12% |
| 2026-09-17 | 16.2525 | -0.10% |
| 2026-09-16 | 16.268 | -0.03% |
| 2026-09-15 | 16.2732 | +0.15% |
| 2026-09-14 | 16.2492 | +0.56% |
| 2026-09-13 | 16.1587 | 0.00% |
| 2026-09-12 | 16.1587 | 0.00% |
| Date | 1 USD in ZAR | Daily change |
|---|---|---|
| 2026-09-11 | 16.1587 | +0.07% |
| 2026-09-10 | 16.1466 | +0.67% |
| 2026-09-09 | 16.0398 | +0.10% |
| 2026-09-08 | 16.024 | +0.20% |
| 2026-09-07 | 15.9917 | +0.15% |
| 2026-09-06 | 15.9672 | 0.00% |
| 2026-09-05 | 15.9672 | 0.00% |
| 2026-09-04 | 15.9672 | -0.44% |
| 2026-09-03 | 16.0373 | -0.35% |
| 2026-09-02 | 16.0944 | -0.38% |
| 2026-09-01 | 16.1558 | +0.25% |
| 2026-08-31 | 16.1163 | +0.72% |
| 2026-08-30 | 16.0018 | 0.00% |
| 2026-08-29 | 16.0018 | 0.00% |
| 2026-08-28 | 16.0018 | — |
USD to ZAR conversion table
1 USD16.2938 ZAR
5 USD81.4689 ZAR
10 USD162.9378 ZAR
25 USD407.3446 ZAR
50 USD814.6891 ZAR
100 USD1,629.3782 ZAR
500 USD8,146.8912 ZAR
1,000 USD16,293.782 ZAR
5,000 USD81,468.912 ZAR
10,000 USD162,937.82 ZAR
Get the USD/ZAR rate in your app
One GET request returns the latest USD → 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/USD/ZAR"fetch('https://rate-api.com/api/v1/pair/USD/ZAR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} ZAR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/ZAR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} ZAR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/ZAR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} ZAR\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "ZAR"
},
"rate": 16.2938,
"timestamp": 1790429296,
"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 USDSouth African Rand → US Dollar0.061373Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.