Convert GBP to DKK
British Pound → Danish Krone
1 GBP = 8.687896 DKK(1 DKK = 0.115103 GBP)
Currency converter
1 GBP =
8.6879 DKK
GBP to DKK: last 30 days
Over the last 30 days, 1 GBP traded between 8.6858 and 8.7347 DKK, averaging 8.709 DKK. The GBP/DKK rate is down 0.37% since 2026-08-28.
- 30-day high
- 8.7347
- 2026-09-15
- 30-day low
- 8.6858
- 2026-09-03
- 30-day average
- 8.709
- Days with data: 30
- 30-day change
- -0.37%
- since 2026-08-28
8.7347
8.68582026-08-28 → 2026-09-26
| Date | 1 GBP in DKK | Daily change |
|---|---|---|
| 2026-09-26 | 8.6879 | 0.00% |
| 2026-09-25 | 8.6879 | -0.07% |
| 2026-09-24 | 8.694 | -0.04% |
| 2026-09-23 | 8.6976 | -0.20% |
| 2026-09-22 | 8.7149 | +0.00% |
| 2026-09-21 | 8.7148 | +0.12% |
| 2026-09-20 | 8.7044 | 0.00% |
| 2026-09-19 | 8.7044 | 0.00% |
| 2026-09-18 | 8.7044 | -0.06% |
| 2026-09-17 | 8.7094 | -0.11% |
| 2026-09-16 | 8.7189 | -0.18% |
| 2026-09-15 | 8.7347 | +0.02% |
| 2026-09-14 | 8.7331 | +0.26% |
| 2026-09-13 | 8.7103 | 0.00% |
| 2026-09-12 | 8.7103 | 0.00% |
| Date | 1 GBP in DKK | Daily change |
|---|---|---|
| 2026-09-11 | 8.7103 | +0.11% |
| 2026-09-10 | 8.7006 | -0.01% |
| 2026-09-09 | 8.7018 | -0.18% |
| 2026-09-08 | 8.7179 | +0.18% |
| 2026-09-07 | 8.7021 | +0.00% |
| 2026-09-06 | 8.7018 | 0.00% |
| 2026-09-05 | 8.7018 | 0.00% |
| 2026-09-04 | 8.7018 | +0.18% |
| 2026-09-03 | 8.6858 | -0.22% |
| 2026-09-02 | 8.7049 | -0.25% |
| 2026-09-01 | 8.7267 | -0.01% |
| 2026-08-31 | 8.7277 | +0.09% |
| 2026-08-30 | 8.72 | 0.00% |
| 2026-08-29 | 8.72 | 0.00% |
| 2026-08-28 | 8.72 | — |
GBP to DKK conversion table
1 GBP8.6879 DKK
5 GBP43.4395 DKK
10 GBP86.879 DKK
25 GBP217.1974 DKK
50 GBP434.3948 DKK
100 GBP868.7896 DKK
500 GBP4,343.9479 DKK
1,000 GBP8,687.8959 DKK
5,000 GBP43,439.479 DKK
10,000 GBP86,878.959 DKK
Get the GBP/DKK rate in your app
One GET request returns the latest GBP → DKK 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/DKK"fetch('https://rate-api.com/api/v1/pair/GBP/DKK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} DKK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/DKK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} DKK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/DKK');
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']} DKK\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "DKK"
},
"rate": 8.6879,
"timestamp": 1790429420,
"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
DKK to GBPDanish Krone → British Pound0.1151Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.