Convert EUR to ZAR
Euro → South African Rand
1 EUR = 18.5798 ZAR(1 ZAR = 0.0538219 EUR)
Currency converter
1 EUR =
18.5798 ZAR
EUR to ZAR: last 30 days
Over the last 30 days, 1 EUR traded between 18.557 and 18.7776 ZAR, averaging 18.6579 ZAR. The EUR/ZAR rate is down 0.27% since 2026-08-29.
- 30-day high
- 18.7776
- 2026-09-15
- 30-day low
- 18.557
- 2026-09-04
- 30-day average
- 18.6579
- Days with data: 30
- 30-day change
- -0.27%
- since 2026-08-29
18.7776
18.5572026-08-29 → 2026-09-27
| Date | 1 EUR in ZAR | Daily change |
|---|---|---|
| 2026-09-27 | 18.5798 | 0.00% |
| 2026-09-26 | 18.5798 | 0.00% |
| 2026-09-25 | 18.5798 | -0.56% |
| 2026-09-24 | 18.6836 | +0.16% |
| 2026-09-23 | 18.6537 | +0.19% |
| 2026-09-22 | 18.618 | -0.34% |
| 2026-09-21 | 18.682 | +0.18% |
| 2026-09-20 | 18.6482 | 0.00% |
| 2026-09-19 | 18.6482 | 0.00% |
| 2026-09-18 | 18.6482 | -0.06% |
| 2026-09-17 | 18.6596 | -0.58% |
| 2026-09-16 | 18.7683 | -0.05% |
| 2026-09-15 | 18.7776 | +0.04% |
| 2026-09-14 | 18.7694 | +0.20% |
| 2026-09-13 | 18.7313 | 0.00% |
| Date | 1 EUR in ZAR | Daily change |
|---|---|---|
| 2026-09-12 | 18.7313 | 0.00% |
| 2026-09-11 | 18.7313 | -0.13% |
| 2026-09-10 | 18.7559 | +0.35% |
| 2026-09-09 | 18.6896 | +0.43% |
| 2026-09-08 | 18.6103 | +0.13% |
| 2026-09-07 | 18.5855 | +0.15% |
| 2026-09-06 | 18.557 | 0.00% |
| 2026-09-05 | 18.557 | 0.00% |
| 2026-09-04 | 18.557 | -0.38% |
| 2026-09-03 | 18.6272 | -0.04% |
| 2026-09-02 | 18.634 | -0.48% |
| 2026-09-01 | 18.7246 | +0.19% |
| 2026-08-31 | 18.6884 | +0.31% |
| 2026-08-30 | 18.6308 | 0.00% |
| 2026-08-29 | 18.6308 | — |
EUR to ZAR conversion table
1 EUR18.5798 ZAR
5 EUR92.899 ZAR
10 EUR185.798 ZAR
25 EUR464.495 ZAR
50 EUR928.99 ZAR
100 EUR1,857.98 ZAR
500 EUR9,289.9 ZAR
1,000 EUR18,579.8 ZAR
5,000 EUR92,899 ZAR
10,000 EUR185,798 ZAR
Get the EUR/ZAR rate in your app
One GET request returns the latest EUR → 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/EUR/ZAR"fetch('https://rate-api.com/api/v1/pair/EUR/ZAR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} ZAR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/ZAR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} ZAR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/ZAR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} ZAR\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "ZAR"
},
"rate": 18.5798,
"timestamp": 1790470787,
"date": "2026-09-27"
}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 EURSouth African Rand → Euro0.053822Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.