Convert DKK to EUR
Danish Krone → Euro
1 DKK = 0.13377 EUR(1 EUR = 7.4755 DKK)
Currency converter
1 DKK =
0.13377 EUR
DKK to EUR: last 30 days
Over the last 30 days, 1 DKK traded between 0.13377 and 0.13379 EUR, averaging 0.13378 EUR. The DKK/EUR rate is down 0.01% since 2026-08-28.
- 30-day high
- 0.13379
- 2026-09-07
- 30-day low
- 0.13377
- 2026-09-22
- 30-day average
- 0.13378
- Days with data: 30
- 30-day change
- -0.01%
- since 2026-08-28
0.13379
0.133772026-08-28 → 2026-09-26
| Date | 1 DKK in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.13377 | 0.00% |
| 2026-09-25 | 0.13377 | +0.00% |
| 2026-09-24 | 0.13377 | 0.00% |
| 2026-09-23 | 0.13377 | +0.00% |
| 2026-09-22 | 0.13377 | -0.00% |
| 2026-09-21 | 0.13377 | -0.00% |
| 2026-09-20 | 0.13377 | 0.00% |
| 2026-09-19 | 0.13377 | 0.00% |
| 2026-09-18 | 0.13377 | -0.00% |
| 2026-09-17 | 0.13377 | +0.00% |
| 2026-09-16 | 0.13377 | -0.00% |
| 2026-09-15 | 0.13378 | +0.00% |
| 2026-09-14 | 0.13377 | -0.01% |
| 2026-09-13 | 0.13378 | 0.00% |
| 2026-09-12 | 0.13378 | 0.00% |
| Date | 1 DKK in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.13378 | +0.00% |
| 2026-09-10 | 0.13378 | -0.00% |
| 2026-09-09 | 0.13378 | -0.00% |
| 2026-09-08 | 0.13378 | -0.00% |
| 2026-09-07 | 0.13379 | +0.00% |
| 2026-09-06 | 0.13379 | 0.00% |
| 2026-09-05 | 0.13379 | 0.00% |
| 2026-09-04 | 0.13379 | -0.00% |
| 2026-09-03 | 0.13379 | +0.01% |
| 2026-09-02 | 0.13378 | -0.00% |
| 2026-09-01 | 0.13378 | +0.00% |
| 2026-08-31 | 0.13378 | -0.00% |
| 2026-08-30 | 0.13378 | 0.00% |
| 2026-08-29 | 0.13378 | 0.00% |
| 2026-08-28 | 0.13378 | — |
DKK to EUR conversion table
1 DKK0.13377 EUR
5 DKK0.66885 EUR
10 DKK1.3377 EUR
25 DKK3.3443 EUR
50 DKK6.6885 EUR
100 DKK13.377 EUR
500 DKK66.8852 EUR
1,000 DKK133.7703 EUR
5,000 DKK668.8516 EUR
10,000 DKK1,337.7032 EUR
Get the DKK/EUR rate in your app
One GET request returns the latest DKK → EUR 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/DKK/EUR"fetch('https://rate-api.com/api/v1/pair/DKK/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DKK = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DKK/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DKK = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DKK/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 DKK = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "DKK",
"to": "EUR"
},
"rate": 0.1338,
"timestamp": 1790435234,
"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
EUR to DKKEuro → Danish Krone7.4755Convert DKK to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.