Convert NOK to USD
Norwegian Krone → US Dollar
1 NOK = 0.105194 USD(1 USD = 9.50627 NOK)
Currency converter
1 NOK =
0.10519 USD
NOK to USD: last 30 days
Over the last 30 days, 1 NOK traded between 0.10519 and 0.10892 USD, averaging 0.10692 USD. The NOK/USD rate is down 1.88% since 2026-08-28.
- 30-day high
- 0.10892
- 2026-09-09
- 30-day low
- 0.10519
- 2026-09-25
- 30-day average
- 0.10692
- Days with data: 30
- 30-day change
- -1.88%
- since 2026-08-28
0.10892
0.105192026-08-28 → 2026-09-26
| Date | 1 NOK in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.10519 | 0.00% |
| 2026-09-25 | 0.10519 | -0.15% |
| 2026-09-24 | 0.10535 | -0.30% |
| 2026-09-23 | 0.10567 | -0.44% |
| 2026-09-22 | 0.10613 | -0.12% |
| 2026-09-21 | 0.10626 | +0.23% |
| 2026-09-20 | 0.10602 | 0.00% |
| 2026-09-19 | 0.10602 | 0.00% |
| 2026-09-18 | 0.10602 | -0.04% |
| 2026-09-17 | 0.10606 | -0.82% |
| 2026-09-16 | 0.10694 | -0.05% |
| 2026-09-15 | 0.10699 | -0.27% |
| 2026-09-14 | 0.10728 | -0.23% |
| 2026-09-13 | 0.10753 | 0.00% |
| 2026-09-12 | 0.10753 | 0.00% |
| Date | 1 NOK in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.10753 | -0.36% |
| 2026-09-10 | 0.10792 | -0.92% |
| 2026-09-09 | 0.10892 | +0.77% |
| 2026-09-08 | 0.10809 | +0.20% |
| 2026-09-07 | 0.10787 | +0.27% |
| 2026-09-06 | 0.10758 | 0.00% |
| 2026-09-05 | 0.10758 | 0.00% |
| 2026-09-04 | 0.10758 | +0.09% |
| 2026-09-03 | 0.10748 | +0.35% |
| 2026-09-02 | 0.10711 | -0.02% |
| 2026-09-01 | 0.10713 | +0.07% |
| 2026-08-31 | 0.10705 | -0.15% |
| 2026-08-30 | 0.10721 | 0.00% |
| 2026-08-29 | 0.10721 | 0.00% |
| 2026-08-28 | 0.10721 | — |
NOK to USD conversion table
1 NOK0.10519 USD
5 NOK0.52597 USD
10 NOK1.0519 USD
25 NOK2.6298 USD
50 NOK5.2597 USD
100 NOK10.5194 USD
500 NOK52.5969 USD
1,000 NOK105.1937 USD
5,000 NOK525.9686 USD
10,000 NOK1,051.9373 USD
Get the NOK/USD rate in your app
One GET request returns the latest NOK → USD 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/USD"fetch('https://rate-api.com/api/v1/pair/NOK/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NOK = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NOK/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NOK = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NOK/USD');
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']} USD\n";Example response
{
"success": true,
"pair": {
"from": "NOK",
"to": "USD"
},
"rate": 0.1052,
"timestamp": 1790437531,
"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
USD to NOKUS Dollar → Norwegian Krone9.5063Convert NOK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.