Convert GBP to NOK
British Pound → Norwegian Krone
1 GBP = 12.598059 NOK(1 NOK = 0.0793773 GBP)
Currency converter
1 GBP =
12.5981 NOK
GBP to NOK: last 30 days
Over the last 30 days, 1 GBP traded between 12.4536 and 12.6686 NOK, averaging 12.5848 NOK. The GBP/NOK rate is down 0.56% since 2026-08-28.
- 30-day high
- 12.6686
- 2026-08-28
- 30-day low
- 12.4536
- 2026-09-09
- 30-day average
- 12.5848
- Days with data: 30
- 30-day change
- -0.56%
- since 2026-08-28
12.6686
12.45362026-08-28 → 2026-09-26
| Date | 1 GBP in NOK | Daily change |
|---|---|---|
| 2026-09-26 | 12.5981 | 0.00% |
| 2026-09-25 | 12.5981 | +0.40% |
| 2026-09-24 | 12.548 | -0.13% |
| 2026-09-23 | 12.5643 | -0.22% |
| 2026-09-22 | 12.5915 | -0.11% |
| 2026-09-21 | 12.6056 | +0.15% |
| 2026-09-20 | 12.5868 | 0.00% |
| 2026-09-19 | 12.5868 | 0.00% |
| 2026-09-18 | 12.5868 | -0.20% |
| 2026-09-17 | 12.6122 | +0.23% |
| 2026-09-16 | 12.5829 | -0.15% |
| 2026-09-15 | 12.6023 | +0.19% |
| 2026-09-14 | 12.5787 | +0.13% |
| 2026-09-13 | 12.5623 | 0.00% |
| 2026-09-12 | 12.5623 | 0.00% |
| Date | 1 GBP in NOK | Daily change |
|---|---|---|
| 2026-09-11 | 12.5623 | +0.27% |
| 2026-09-10 | 12.528 | +0.60% |
| 2026-09-09 | 12.4536 | -0.63% |
| 2026-09-08 | 12.5321 | -0.09% |
| 2026-09-07 | 12.5434 | -0.27% |
| 2026-09-06 | 12.5771 | 0.00% |
| 2026-09-05 | 12.5771 | 0.00% |
| 2026-09-04 | 12.5771 | +0.16% |
| 2026-09-03 | 12.5573 | -0.24% |
| 2026-09-02 | 12.5875 | -0.34% |
| 2026-09-01 | 12.6303 | -0.13% |
| 2026-08-31 | 12.6472 | -0.17% |
| 2026-08-30 | 12.6686 | 0.00% |
| 2026-08-29 | 12.6686 | 0.00% |
| 2026-08-28 | 12.6686 | — |
GBP to NOK conversion table
1 GBP12.5981 NOK
5 GBP62.9903 NOK
10 GBP125.9806 NOK
25 GBP314.9515 NOK
50 GBP629.903 NOK
100 GBP1,259.8059 NOK
500 GBP6,299.0296 NOK
1,000 GBP12,598.059 NOK
5,000 GBP62,990.296 NOK
10,000 GBP125,980.59 NOK
Get the GBP/NOK rate in your app
One GET request returns the latest GBP → 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/GBP/NOK"fetch('https://rate-api.com/api/v1/pair/GBP/NOK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} NOK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/NOK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} NOK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/NOK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} NOK\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "NOK"
},
"rate": 12.5981,
"timestamp": 1790429438,
"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 GBPNorwegian Krone → British Pound0.079377Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.