Convert RUB to NZD
Russian Ruble → New Zealand Dollar
1 RUB = 0.0207426 NZD(1 NZD = 48.209866 RUB)
Currency converter
1 RUB =
0.020743 NZD
RUB to NZD: last 30 days
Over the last 30 days, 1 RUB traded between 0.019508 and 0.020843 NZD, averaging 0.020218 NZD. The RUB/NZD rate is up 5.40% since 2026-08-28.
- 30-day high
- 0.020843
- 2026-09-23
- 30-day low
- 0.019508
- 2026-09-03
- 30-day average
- 0.020218
- Days with data: 30
- 30-day change
- +5.40%
- since 2026-08-28
0.020843
0.0195082026-08-28 → 2026-09-26
| Date | 1 RUB in NZD | Daily change |
|---|---|---|
| 2026-09-26 | 0.020743 | 0.00% |
| 2026-09-25 | 0.020743 | -0.23% |
| 2026-09-24 | 0.02079 | -0.26% |
| 2026-09-23 | 0.020843 | +0.04% |
| 2026-09-22 | 0.020834 | +0.56% |
| 2026-09-21 | 0.020718 | -0.52% |
| 2026-09-20 | 0.020825 | +0.37% |
| 2026-09-19 | 0.020748 | +0.12% |
| 2026-09-18 | 0.020723 | +0.24% |
| 2026-09-17 | 0.020675 | +0.31% |
| 2026-09-16 | 0.020611 | +0.29% |
| 2026-09-15 | 0.020552 | +0.28% |
| 2026-09-14 | 0.020495 | +0.55% |
| 2026-09-13 | 0.020382 | -0.11% |
| 2026-09-12 | 0.020405 | -0.27% |
| Date | 1 RUB in NZD | Daily change |
|---|---|---|
| 2026-09-11 | 0.020461 | +1.31% |
| 2026-09-10 | 0.020196 | +1.51% |
| 2026-09-09 | 0.019897 | +0.25% |
| 2026-09-08 | 0.019846 | +1.00% |
| 2026-09-07 | 0.01965 | +0.06% |
| 2026-09-06 | 0.019638 | -0.85% |
| 2026-09-05 | 0.019806 | +0.97% |
| 2026-09-04 | 0.019615 | +0.55% |
| 2026-09-03 | 0.019508 | -1.29% |
| 2026-09-02 | 0.019764 | +0.50% |
| 2026-09-01 | 0.019665 | +0.03% |
| 2026-08-31 | 0.01966 | +0.54% |
| 2026-08-30 | 0.019555 | +0.19% |
| 2026-08-29 | 0.019519 | -0.82% |
| 2026-08-28 | 0.01968 | — |
RUB to NZD conversion table
1 RUB0.020743 NZD
5 RUB0.10371 NZD
10 RUB0.20743 NZD
25 RUB0.51857 NZD
50 RUB1.0371 NZD
100 RUB2.0743 NZD
500 RUB10.3713 NZD
1,000 RUB20.7426 NZD
5,000 RUB103.7132 NZD
10,000 RUB207.4264 NZD
Get the RUB/NZD rate in your app
One GET request returns the latest RUB → NZD 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/NZD"fetch('https://rate-api.com/api/v1/pair/RUB/NZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} NZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/NZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} NZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/NZD');
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']} NZD\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "NZD"
},
"rate": 0.0207,
"timestamp": 1790429315,
"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
NZD to RUBNew Zealand Dollar → Russian Ruble48.2099Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.