Convert DKK to CAD
Danish Krone → Canadian Dollar
1 DKK = 0.215731 CAD(1 CAD = 4.635394 DKK)
Currency converter
1 DKK =
0.21573 CAD
DKK to CAD: last 30 days
Over the last 30 days, 1 DKK traded between 0.21432 and 0.21579 CAD, averaging 0.21503 CAD. The DKK/CAD rate is down 0.03% since 2026-08-28.
- 30-day high
- 0.21579
- 2026-08-28
- 30-day low
- 0.21432
- 2026-09-03
- 30-day average
- 0.21503
- Days with data: 30
- 30-day change
- -0.03%
- since 2026-08-28
0.21579
0.214322026-08-28 → 2026-09-26
| Date | 1 DKK in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.21573 | 0.00% |
| 2026-09-25 | 0.21573 | +0.50% |
| 2026-09-24 | 0.21466 | -0.19% |
| 2026-09-23 | 0.21506 | -0.13% |
| 2026-09-22 | 0.21535 | +0.05% |
| 2026-09-21 | 0.21524 | +0.22% |
| 2026-09-20 | 0.21478 | 0.00% |
| 2026-09-19 | 0.21478 | 0.00% |
| 2026-09-18 | 0.21478 | -0.08% |
| 2026-09-17 | 0.21494 | -0.08% |
| 2026-09-16 | 0.21512 | +0.11% |
| 2026-09-15 | 0.21487 | +0.14% |
| 2026-09-14 | 0.21458 | -0.15% |
| 2026-09-13 | 0.21491 | 0.00% |
| 2026-09-12 | 0.21491 | 0.00% |
| Date | 1 DKK in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.21491 | +0.10% |
| 2026-09-10 | 0.21469 | +0.03% |
| 2026-09-09 | 0.21462 | +0.06% |
| 2026-09-08 | 0.2145 | -0.18% |
| 2026-09-07 | 0.21488 | +0.15% |
| 2026-09-06 | 0.21457 | 0.00% |
| 2026-09-05 | 0.21457 | 0.00% |
| 2026-09-04 | 0.21457 | +0.12% |
| 2026-09-03 | 0.21432 | -0.63% |
| 2026-09-02 | 0.21568 | +0.16% |
| 2026-09-01 | 0.21534 | -0.03% |
| 2026-08-31 | 0.21541 | -0.18% |
| 2026-08-30 | 0.21579 | 0.00% |
| 2026-08-29 | 0.21579 | 0.00% |
| 2026-08-28 | 0.21579 | — |
DKK to CAD conversion table
1 DKK0.21573 CAD
5 DKK1.0787 CAD
10 DKK2.1573 CAD
25 DKK5.3933 CAD
50 DKK10.7866 CAD
100 DKK21.5731 CAD
500 DKK107.8657 CAD
1,000 DKK215.7314 CAD
5,000 DKK1,078.6569 CAD
10,000 DKK2,157.3139 CAD
Get the DKK/CAD rate in your app
One GET request returns the latest DKK → CAD 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/CAD"fetch('https://rate-api.com/api/v1/pair/DKK/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DKK = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DKK/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DKK = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DKK/CAD');
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']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "DKK",
"to": "CAD"
},
"rate": 0.2157,
"timestamp": 1790435148,
"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
CAD to DKKCanadian Dollar → Danish Krone4.6354Convert DKK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.