Convert EUR to NOK
Euro → Norwegian Krone
1 EUR = 10.84 NOK(1 NOK = 0.0922509 EUR)
Currency converter
1 EUR =
10.84 NOK
EUR to NOK: last 30 days
Over the last 30 days, 1 EUR traded between 10.6975 and 10.8595 NOK, averaging 10.8017 NOK. The EUR/NOK rate is down 0.18% since 2026-08-28.
- 30-day high
- 10.8595
- 2026-08-28
- 30-day low
- 10.6975
- 2026-09-09
- 30-day average
- 10.8017
- Days with data: 30
- 30-day change
- -0.18%
- since 2026-08-28
10.8595
10.69752026-08-28 → 2026-09-26
| Date | 1 EUR in NOK | Daily change |
|---|---|---|
| 2026-09-26 | 10.84 | 0.00% |
| 2026-09-25 | 10.84 | +0.47% |
| 2026-09-24 | 10.7895 | -0.09% |
| 2026-09-23 | 10.799 | -0.02% |
| 2026-09-22 | 10.801 | -0.11% |
| 2026-09-21 | 10.813 | +0.03% |
| 2026-09-20 | 10.8095 | 0.00% |
| 2026-09-19 | 10.8095 | 0.00% |
| 2026-09-18 | 10.8095 | -0.14% |
| 2026-09-17 | 10.825 | +0.34% |
| 2026-09-16 | 10.7884 | +0.03% |
| 2026-09-15 | 10.785 | +0.17% |
| 2026-09-14 | 10.767 | -0.13% |
| 2026-09-13 | 10.7805 | 0.00% |
| 2026-09-12 | 10.7805 | 0.00% |
| Date | 1 EUR in NOK | Daily change |
|---|---|---|
| 2026-09-11 | 10.7805 | +0.16% |
| 2026-09-10 | 10.7635 | +0.62% |
| 2026-09-09 | 10.6975 | -0.44% |
| 2026-09-08 | 10.745 | -0.27% |
| 2026-09-07 | 10.7739 | -0.27% |
| 2026-09-06 | 10.8034 | 0.00% |
| 2026-09-05 | 10.8034 | 0.00% |
| 2026-09-04 | 10.8034 | -0.03% |
| 2026-09-03 | 10.8062 | -0.03% |
| 2026-09-02 | 10.809 | -0.09% |
| 2026-09-01 | 10.8185 | -0.12% |
| 2026-08-31 | 10.832 | -0.25% |
| 2026-08-30 | 10.8595 | 0.00% |
| 2026-08-29 | 10.8595 | 0.00% |
| 2026-08-28 | 10.8595 | — |
EUR to NOK conversion table
1 EUR10.84 NOK
5 EUR54.2 NOK
10 EUR108.4 NOK
25 EUR271 NOK
50 EUR542 NOK
100 EUR1,084 NOK
500 EUR5,420 NOK
1,000 EUR10,840 NOK
5,000 EUR54,200 NOK
10,000 EUR108,400 NOK
Get the EUR/NOK rate in your app
One GET request returns the latest EUR → 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/EUR/NOK"fetch('https://rate-api.com/api/v1/pair/EUR/NOK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} NOK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/NOK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} NOK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/NOK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} NOK\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "NOK"
},
"rate": 10.84,
"timestamp": 1790429428,
"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 EURNorwegian Krone → Euro0.092251Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.