Convert ZAR to EUR
South African Rand → Euro
1 ZAR = 0.0538219 EUR(1 EUR = 18.5798 ZAR)
Currency converter
1 ZAR =
0.053822 EUR
ZAR to EUR: last 30 days
Over the last 30 days, 1 ZAR traded between 0.053255 and 0.053888 EUR, averaging 0.053592 EUR. The ZAR/EUR rate is up 0.27% since 2026-08-28.
- 30-day high
- 0.053888
- 2026-09-04
- 30-day low
- 0.053255
- 2026-09-15
- 30-day average
- 0.053592
- Days with data: 30
- 30-day change
- +0.27%
- since 2026-08-28
0.053888
0.0532552026-08-28 → 2026-09-26
| Date | 1 ZAR in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.053822 | 0.00% |
| 2026-09-25 | 0.053822 | +0.56% |
| 2026-09-24 | 0.053523 | -0.16% |
| 2026-09-23 | 0.053609 | -0.19% |
| 2026-09-22 | 0.053711 | +0.34% |
| 2026-09-21 | 0.053528 | -0.18% |
| 2026-09-20 | 0.053625 | 0.00% |
| 2026-09-19 | 0.053625 | 0.00% |
| 2026-09-18 | 0.053625 | +0.06% |
| 2026-09-17 | 0.053592 | +0.58% |
| 2026-09-16 | 0.053281 | +0.05% |
| 2026-09-15 | 0.053255 | -0.04% |
| 2026-09-14 | 0.053278 | -0.20% |
| 2026-09-13 | 0.053387 | 0.00% |
| 2026-09-12 | 0.053387 | 0.00% |
| Date | 1 ZAR in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.053387 | +0.13% |
| 2026-09-10 | 0.053316 | -0.35% |
| 2026-09-09 | 0.053506 | -0.42% |
| 2026-09-08 | 0.053734 | -0.13% |
| 2026-09-07 | 0.053805 | -0.15% |
| 2026-09-06 | 0.053888 | 0.00% |
| 2026-09-05 | 0.053888 | 0.00% |
| 2026-09-04 | 0.053888 | +0.38% |
| 2026-09-03 | 0.053685 | +0.04% |
| 2026-09-02 | 0.053665 | +0.49% |
| 2026-09-01 | 0.053406 | -0.19% |
| 2026-08-31 | 0.053509 | -0.31% |
| 2026-08-30 | 0.053675 | 0.00% |
| 2026-08-29 | 0.053675 | 0.00% |
| 2026-08-28 | 0.053675 | — |
ZAR to EUR conversion table
1 ZAR0.053822 EUR
5 ZAR0.26911 EUR
10 ZAR0.53822 EUR
25 ZAR1.3455 EUR
50 ZAR2.6911 EUR
100 ZAR5.3822 EUR
500 ZAR26.9109 EUR
1,000 ZAR53.8219 EUR
5,000 ZAR269.1095 EUR
10,000 ZAR538.2189 EUR
Get the ZAR/EUR rate in your app
One GET request returns the latest ZAR → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/ZAR/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZAR = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZAR/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZAR = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZAR/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "ZAR",
"to": "EUR"
},
"rate": 0.0538,
"timestamp": 1790435092,
"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
EUR to ZAREuro → South African Rand18.5798Convert ZAR to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.