Convert NOK to EUR
Norwegian Krone → Euro
1 NOK = 0.0922509 EUR(1 EUR = 10.84 NOK)
Currency converter
1 NOK =
0.092251 EUR
NOK to EUR: last 30 days
Over the last 30 days, 1 NOK traded between 0.092085 and 0.09348 EUR, averaging 0.092579 EUR. The NOK/EUR rate is up 0.18% since 2026-08-28.
- 30-day high
- 0.09348
- 2026-09-09
- 30-day low
- 0.092085
- 2026-08-28
- 30-day average
- 0.092579
- Days with data: 30
- 30-day change
- +0.18%
- since 2026-08-28
0.09348
0.0920852026-08-28 → 2026-09-26
| Date | 1 NOK in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.092251 | 0.00% |
| 2026-09-25 | 0.092251 | -0.47% |
| 2026-09-24 | 0.092683 | +0.09% |
| 2026-09-23 | 0.092601 | +0.02% |
| 2026-09-22 | 0.092584 | +0.11% |
| 2026-09-21 | 0.092481 | -0.03% |
| 2026-09-20 | 0.092511 | 0.00% |
| 2026-09-19 | 0.092511 | 0.00% |
| 2026-09-18 | 0.092511 | +0.14% |
| 2026-09-17 | 0.092379 | -0.34% |
| 2026-09-16 | 0.092692 | -0.03% |
| 2026-09-15 | 0.092721 | -0.17% |
| 2026-09-14 | 0.092877 | +0.13% |
| 2026-09-13 | 0.09276 | 0.00% |
| 2026-09-12 | 0.09276 | 0.00% |
| Date | 1 NOK in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.09276 | -0.16% |
| 2026-09-10 | 0.092906 | -0.61% |
| 2026-09-09 | 0.09348 | +0.44% |
| 2026-09-08 | 0.093066 | +0.27% |
| 2026-09-07 | 0.092817 | +0.27% |
| 2026-09-06 | 0.092563 | 0.00% |
| 2026-09-05 | 0.092563 | 0.00% |
| 2026-09-04 | 0.092563 | +0.03% |
| 2026-09-03 | 0.09254 | +0.03% |
| 2026-09-02 | 0.092516 | +0.09% |
| 2026-09-01 | 0.092434 | +0.12% |
| 2026-08-31 | 0.092319 | +0.25% |
| 2026-08-30 | 0.092085 | 0.00% |
| 2026-08-29 | 0.092085 | 0.00% |
| 2026-08-28 | 0.092085 | — |
NOK to EUR conversion table
1 NOK0.092251 EUR
5 NOK0.46125 EUR
10 NOK0.92251 EUR
25 NOK2.3063 EUR
50 NOK4.6125 EUR
100 NOK9.2251 EUR
500 NOK46.1255 EUR
1,000 NOK92.2509 EUR
5,000 NOK461.2546 EUR
10,000 NOK922.5092 EUR
Get the NOK/EUR rate in your app
One GET request returns the latest NOK → EUR 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/NOK/EUR"fetch('https://rate-api.com/api/v1/pair/NOK/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NOK = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NOK/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NOK = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NOK/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 NOK = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "NOK",
"to": "EUR"
},
"rate": 0.0923,
"timestamp": 1790435230,
"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
EUR to NOKEuro → Norwegian Krone10.84Convert NOK to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.