Convert RUB to ZAR
Russian Ruble → South African Rand
1 RUB = 0.191662 ZAR(1 ZAR = 5.217516 RUB)
Currency converter
1 RUB =
0.19166 ZAR
RUB to ZAR: last 30 days
Over the last 30 days, 1 RUB traded between 0.18371 and 0.19392 ZAR, averaging 0.18962 ZAR. The RUB/ZAR rate is up 2.37% since 2026-08-28.
- 30-day high
- 0.19392
- 2026-09-23
- 30-day low
- 0.18371
- 2026-09-03
- 30-day average
- 0.18962
- Days with data: 30
- 30-day change
- +2.37%
- since 2026-08-28
0.19392
0.183712026-08-28 → 2026-09-26
| Date | 1 RUB in ZAR | Daily change |
|---|---|---|
| 2026-09-26 | 0.19166 | 0.00% |
| 2026-09-25 | 0.19166 | -1.07% |
| 2026-09-24 | 0.19374 | -0.10% |
| 2026-09-23 | 0.19392 | +0.00% |
| 2026-09-22 | 0.19391 | +0.38% |
| 2026-09-21 | 0.19318 | -0.18% |
| 2026-09-20 | 0.19352 | +0.37% |
| 2026-09-19 | 0.19281 | +0.12% |
| 2026-09-18 | 0.19257 | -0.20% |
| 2026-09-17 | 0.19296 | -0.13% |
| 2026-09-16 | 0.19321 | +0.34% |
| 2026-09-15 | 0.19256 | +0.17% |
| 2026-09-14 | 0.19222 | +0.26% |
| 2026-09-13 | 0.19172 | -0.11% |
| 2026-09-12 | 0.19193 | -0.27% |
| Date | 1 RUB in ZAR | Daily change |
|---|---|---|
| 2026-09-11 | 0.19246 | +1.31% |
| 2026-09-10 | 0.18997 | +1.68% |
| 2026-09-09 | 0.18684 | +0.55% |
| 2026-09-08 | 0.18581 | +0.64% |
| 2026-09-07 | 0.18464 | +0.09% |
| 2026-09-06 | 0.18447 | -0.85% |
| 2026-09-05 | 0.18605 | +0.97% |
| 2026-09-04 | 0.18425 | +0.30% |
| 2026-09-03 | 0.18371 | -0.89% |
| 2026-09-02 | 0.18537 | -0.96% |
| 2026-09-01 | 0.18716 | -0.16% |
| 2026-08-31 | 0.18746 | +0.77% |
| 2026-08-30 | 0.18603 | +0.19% |
| 2026-08-29 | 0.18568 | -0.82% |
| 2026-08-28 | 0.18722 | — |
RUB to ZAR conversion table
1 RUB0.19166 ZAR
5 RUB0.95831 ZAR
10 RUB1.9166 ZAR
25 RUB4.7916 ZAR
50 RUB9.5831 ZAR
100 RUB19.1662 ZAR
500 RUB95.831 ZAR
1,000 RUB191.6621 ZAR
5,000 RUB958.3105 ZAR
10,000 RUB1,916.621 ZAR
Get the RUB/ZAR rate in your app
One GET request returns the latest RUB → 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/RUB/ZAR"fetch('https://rate-api.com/api/v1/pair/RUB/ZAR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} ZAR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/ZAR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} ZAR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/ZAR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} ZAR\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "ZAR"
},
"rate": 0.1917,
"timestamp": 1790429287,
"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 RUBSouth African Rand → Russian Ruble5.2175Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.