Convert NOK to AUD
Norwegian Krone → Australian Dollar
1 NOK = 0.149631 AUD(1 AUD = 6.683107 NOK)
Currency converter
1 NOK =
0.14963 AUD
NOK to AUD: last 30 days
Over the last 30 days, 1 NOK traded between 0.14887 and 0.15076 AUD, averaging 0.14957 AUD. The NOK/AUD rate is up 0.41% since 2026-08-28.
- 30-day high
- 0.15076
- 2026-09-09
- 30-day low
- 0.14887
- 2026-09-21
- 30-day average
- 0.14957
- Days with data: 30
- 30-day change
- +0.41%
- since 2026-08-28
0.15076
0.148872026-08-28 → 2026-09-26
| Date | 1 NOK in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.14963 | 0.00% |
| 2026-09-25 | 0.14963 | -0.20% |
| 2026-09-24 | 0.14993 | +0.28% |
| 2026-09-23 | 0.14951 | +0.17% |
| 2026-09-22 | 0.14926 | +0.26% |
| 2026-09-21 | 0.14887 | -0.02% |
| 2026-09-20 | 0.1489 | 0.00% |
| 2026-09-19 | 0.1489 | 0.00% |
| 2026-09-18 | 0.1489 | -0.13% |
| 2026-09-17 | 0.14909 | -0.57% |
| 2026-09-16 | 0.14994 | -0.14% |
| 2026-09-15 | 0.15015 | -0.21% |
| 2026-09-14 | 0.15047 | +0.37% |
| 2026-09-13 | 0.14992 | 0.00% |
| 2026-09-12 | 0.14992 | 0.00% |
| Date | 1 NOK in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.14992 | -0.19% |
| 2026-09-10 | 0.1502 | -0.37% |
| 2026-09-09 | 0.15076 | +0.63% |
| 2026-09-08 | 0.14982 | +0.20% |
| 2026-09-07 | 0.14952 | +0.12% |
| 2026-09-06 | 0.14934 | 0.00% |
| 2026-09-05 | 0.14934 | 0.00% |
| 2026-09-04 | 0.14934 | -0.06% |
| 2026-09-03 | 0.14942 | -0.29% |
| 2026-09-02 | 0.14986 | -0.10% |
| 2026-09-01 | 0.15002 | +0.36% |
| 2026-08-31 | 0.14948 | +0.31% |
| 2026-08-30 | 0.14902 | 0.00% |
| 2026-08-29 | 0.14902 | 0.00% |
| 2026-08-28 | 0.14902 | — |
NOK to AUD conversion table
1 NOK0.14963 AUD
5 NOK0.74815 AUD
10 NOK1.4963 AUD
25 NOK3.7408 AUD
50 NOK7.4815 AUD
100 NOK14.9631 AUD
500 NOK74.8155 AUD
1,000 NOK149.631 AUD
5,000 NOK748.155 AUD
10,000 NOK1,496.31 AUD
Get the NOK/AUD rate in your app
One GET request returns the latest NOK → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/NOK/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NOK = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NOK/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NOK = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NOK/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "NOK",
"to": "AUD"
},
"rate": 0.1496,
"timestamp": 1790435077,
"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
AUD to NOKAustralian Dollar → Norwegian Krone6.6831Convert NOK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.