Convert ZAR to RUB
South African Rand → Russian Ruble
1 ZAR = 5.217516 RUB(1 RUB = 0.191662 ZAR)
Currency converter
1 ZAR =
5.2175 RUB
ZAR to RUB: last 30 days
Over the last 30 days, 1 ZAR traded between 5.1567 and 5.4434 RUB, averaging 5.2755 RUB. The ZAR/RUB rate is down 2.32% since 2026-08-28.
- 30-day high
- 5.4434
- 2026-09-03
- 30-day low
- 5.1567
- 2026-09-23
- 30-day average
- 5.2755
- Days with data: 30
- 30-day change
- -2.32%
- since 2026-08-28
5.4434
5.15672026-08-28 → 2026-09-26
| Date | 1 ZAR in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 5.2175 | 0.00% |
| 2026-09-25 | 5.2175 | +1.08% |
| 2026-09-24 | 5.1616 | +0.10% |
| 2026-09-23 | 5.1567 | -0.00% |
| 2026-09-22 | 5.157 | -0.38% |
| 2026-09-21 | 5.1764 | +0.18% |
| 2026-09-20 | 5.1673 | -0.37% |
| 2026-09-19 | 5.1865 | -0.12% |
| 2026-09-18 | 5.1928 | +0.20% |
| 2026-09-17 | 5.1825 | +0.13% |
| 2026-09-16 | 5.1757 | -0.34% |
| 2026-09-15 | 5.1933 | -0.17% |
| 2026-09-14 | 5.2023 | -0.26% |
| 2026-09-13 | 5.216 | +0.11% |
| 2026-09-12 | 5.2103 | +0.27% |
| Date | 1 ZAR in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 5.196 | -1.29% |
| 2026-09-10 | 5.264 | -1.65% |
| 2026-09-09 | 5.3522 | -0.55% |
| 2026-09-08 | 5.3818 | -0.63% |
| 2026-09-07 | 5.416 | -0.09% |
| 2026-09-06 | 5.421 | +0.86% |
| 2026-09-05 | 5.375 | -0.96% |
| 2026-09-04 | 5.4273 | -0.30% |
| 2026-09-03 | 5.4434 | +0.90% |
| 2026-09-02 | 5.3947 | +0.97% |
| 2026-09-01 | 5.3429 | +0.16% |
| 2026-08-31 | 5.3344 | -0.77% |
| 2026-08-30 | 5.3756 | -0.19% |
| 2026-08-29 | 5.3856 | +0.83% |
| 2026-08-28 | 5.3413 | — |
ZAR to RUB conversion table
1 ZAR5.2175 RUB
5 ZAR26.0876 RUB
10 ZAR52.1752 RUB
25 ZAR130.4379 RUB
50 ZAR260.8758 RUB
100 ZAR521.7516 RUB
500 ZAR2,608.7579 RUB
1,000 ZAR5,217.5157 RUB
5,000 ZAR26,087.579 RUB
10,000 ZAR52,175.157 RUB
Get the ZAR/RUB rate in your app
One GET request returns the latest ZAR → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/ZAR/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZAR = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZAR/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZAR = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZAR/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "ZAR",
"to": "RUB"
},
"rate": 5.2175,
"timestamp": 1790432043,
"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
RUB to ZARRussian Ruble → South African Rand0.19166Convert ZAR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.