Convert RUB to NOK
Russian Ruble → Norwegian Krone
1 RUB = 0.111821 NOK(1 NOK = 8.942841 RUB)
Currency converter
1 RUB =
0.11182 NOK
RUB to NOK: last 30 days
Over the last 30 days, 1 RUB traded between 0.10657 and 0.1125 NOK, averaging 0.10977 NOK. The RUB/NOK rate is up 2.47% since 2026-08-28.
- 30-day high
- 0.1125
- 2026-09-22
- 30-day low
- 0.10657
- 2026-09-03
- 30-day average
- 0.10977
- Days with data: 30
- 30-day change
- +2.47%
- since 2026-08-28
0.1125
0.106572026-08-28 → 2026-09-26
| Date | 1 RUB in NOK | Daily change |
|---|---|---|
| 2026-09-26 | 0.11182 | 0.00% |
| 2026-09-25 | 0.11182 | -0.05% |
| 2026-09-24 | 0.11188 | -0.34% |
| 2026-09-23 | 0.11227 | -0.21% |
| 2026-09-22 | 0.1125 | +0.61% |
| 2026-09-21 | 0.11181 | -0.32% |
| 2026-09-20 | 0.11218 | +0.37% |
| 2026-09-19 | 0.11176 | +0.12% |
| 2026-09-18 | 0.11163 | -0.28% |
| 2026-09-17 | 0.11194 | +0.79% |
| 2026-09-16 | 0.11106 | +0.42% |
| 2026-09-15 | 0.1106 | +0.30% |
| 2026-09-14 | 0.11027 | -0.07% |
| 2026-09-13 | 0.11034 | -0.11% |
| 2026-09-12 | 0.11046 | -0.27% |
| Date | 1 RUB in NOK | Daily change |
|---|---|---|
| 2026-09-11 | 0.11077 | +1.60% |
| 2026-09-10 | 0.10902 | +1.94% |
| 2026-09-09 | 0.10694 | -0.32% |
| 2026-09-08 | 0.10728 | +0.23% |
| 2026-09-07 | 0.10703 | -0.33% |
| 2026-09-06 | 0.10739 | -0.85% |
| 2026-09-05 | 0.10831 | +0.97% |
| 2026-09-04 | 0.10727 | +0.65% |
| 2026-09-03 | 0.10657 | -0.88% |
| 2026-09-02 | 0.10752 | -0.57% |
| 2026-09-01 | 0.10814 | -0.48% |
| 2026-08-31 | 0.10866 | +0.21% |
| 2026-08-30 | 0.10843 | +0.19% |
| 2026-08-29 | 0.10823 | -0.82% |
| 2026-08-28 | 0.10913 | — |
RUB to NOK conversion table
1 RUB0.11182 NOK
5 RUB0.55911 NOK
10 RUB1.1182 NOK
25 RUB2.7955 NOK
50 RUB5.5911 NOK
100 RUB11.1821 NOK
500 RUB55.9106 NOK
1,000 RUB111.8213 NOK
5,000 RUB559.1064 NOK
10,000 RUB1,118.2129 NOK
Get the RUB/NOK rate in your app
One GET request returns the latest RUB → NOK 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/NOK"fetch('https://rate-api.com/api/v1/pair/RUB/NOK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} NOK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/NOK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} NOK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/NOK');
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']} NOK\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "NOK"
},
"rate": 0.1118,
"timestamp": 1790429347,
"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
NOK to RUBNorwegian Krone → Russian Ruble8.9428Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.