Convert NZD to RUB
New Zealand Dollar → Russian Ruble
1 NZD = 48.209866 RUB(1 RUB = 0.0207426 NZD)
Currency converter
1 NZD =
48.2099 RUB
NZD to RUB: last 30 days
Over the last 30 days, 1 NZD traded between 47.9784 and 51.2609 RUB, averaging 49.4906 RUB. The NZD/RUB rate is down 5.12% since 2026-08-28.
- 30-day high
- 51.2609
- 2026-09-03
- 30-day low
- 47.9784
- 2026-09-23
- 30-day average
- 49.4906
- Days with data: 30
- 30-day change
- -5.12%
- since 2026-08-28
51.2609
47.97842026-08-28 → 2026-09-26
| Date | 1 NZD in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 48.2099 | 0.00% |
| 2026-09-25 | 48.2099 | +0.23% |
| 2026-09-24 | 48.1011 | +0.26% |
| 2026-09-23 | 47.9784 | -0.04% |
| 2026-09-22 | 47.999 | -0.56% |
| 2026-09-21 | 48.268 | +0.52% |
| 2026-09-20 | 48.0184 | -0.37% |
| 2026-09-19 | 48.1965 | -0.12% |
| 2026-09-18 | 48.2552 | -0.23% |
| 2026-09-17 | 48.3686 | -0.31% |
| 2026-09-16 | 48.5178 | -0.29% |
| 2026-09-15 | 48.6565 | -0.28% |
| 2026-09-14 | 48.7931 | -0.55% |
| 2026-09-13 | 49.0625 | +0.11% |
| 2026-09-12 | 49.0081 | +0.27% |
| Date | 1 NZD in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 48.8738 | -1.29% |
| 2026-09-10 | 49.5139 | -1.48% |
| 2026-09-09 | 50.2592 | -0.25% |
| 2026-09-08 | 50.3869 | -0.99% |
| 2026-09-07 | 50.8913 | -0.06% |
| 2026-09-06 | 50.9229 | +0.86% |
| 2026-09-05 | 50.4902 | -0.96% |
| 2026-09-04 | 50.9816 | -0.54% |
| 2026-09-03 | 51.2609 | +1.31% |
| 2026-09-02 | 50.5972 | -0.50% |
| 2026-09-01 | 50.8508 | -0.03% |
| 2026-08-31 | 50.8641 | -0.54% |
| 2026-08-30 | 51.138 | -0.19% |
| 2026-08-29 | 51.2333 | +0.83% |
| 2026-08-28 | 50.812 | — |
NZD to RUB conversion table
1 NZD48.2099 RUB
5 NZD241.0493 RUB
10 NZD482.0987 RUB
25 NZD1,205.2467 RUB
50 NZD2,410.4933 RUB
100 NZD4,820.9866 RUB
500 NZD24,104.933 RUB
1,000 NZD48,209.866 RUB
5,000 NZD241,049.33 RUB
10,000 NZD482,098.66 RUB
Get the NZD/RUB rate in your app
One GET request returns the latest NZD → 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/NZD/RUB"fetch('https://rate-api.com/api/v1/pair/NZD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NZD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NZD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NZD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NZD/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 NZD = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "NZD",
"to": "RUB"
},
"rate": 48.2099,
"timestamp": 1790435080,
"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 NZDRussian Ruble → New Zealand Dollar0.020743Convert NZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.