Convert DKK to AUD
Danish Krone → Australian Dollar
1 DKK = 0.216975 AUD(1 AUD = 4.608816 DKK)
Currency converter
1 DKK =
0.21698 AUD
DKK to AUD: last 30 days
Over the last 30 days, 1 DKK traded between 0.21532 and 0.21712 AUD, averaging 0.21613 AUD. The DKK/AUD rate is up 0.22% since 2026-08-28.
- 30-day high
- 0.21712
- 2026-09-01
- 30-day low
- 0.21532
- 2026-09-18
- 30-day average
- 0.21613
- Days with data: 30
- 30-day change
- +0.22%
- since 2026-08-28
0.21712
0.215322026-08-28 → 2026-09-26
| Date | 1 DKK in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.21698 | 0.00% |
| 2026-09-25 | 0.21698 | +0.27% |
| 2026-09-24 | 0.2164 | +0.19% |
| 2026-09-23 | 0.21598 | +0.15% |
| 2026-09-22 | 0.21566 | +0.15% |
| 2026-09-21 | 0.21534 | +0.01% |
| 2026-09-20 | 0.21532 | 0.00% |
| 2026-09-19 | 0.21532 | 0.00% |
| 2026-09-18 | 0.21532 | -0.27% |
| 2026-09-17 | 0.2159 | -0.23% |
| 2026-09-16 | 0.21639 | -0.11% |
| 2026-09-15 | 0.21663 | -0.04% |
| 2026-09-14 | 0.21673 | +0.24% |
| 2026-09-13 | 0.21622 | 0.00% |
| 2026-09-12 | 0.21622 | 0.00% |
| Date | 1 DKK in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.21622 | -0.03% |
| 2026-09-10 | 0.21628 | +0.24% |
| 2026-09-09 | 0.21576 | +0.18% |
| 2026-09-08 | 0.21537 | -0.07% |
| 2026-09-07 | 0.21552 | -0.15% |
| 2026-09-06 | 0.21584 | 0.00% |
| 2026-09-05 | 0.21584 | 0.00% |
| 2026-09-04 | 0.21584 | -0.08% |
| 2026-09-03 | 0.21603 | -0.31% |
| 2026-09-02 | 0.21671 | -0.19% |
| 2026-09-01 | 0.21712 | +0.24% |
| 2026-08-31 | 0.2166 | +0.05% |
| 2026-08-30 | 0.2165 | 0.00% |
| 2026-08-29 | 0.2165 | 0.00% |
| 2026-08-28 | 0.2165 | — |
DKK to AUD conversion table
1 DKK0.21698 AUD
5 DKK1.0849 AUD
10 DKK2.1698 AUD
25 DKK5.4244 AUD
50 DKK10.8488 AUD
100 DKK21.6975 AUD
500 DKK108.4877 AUD
1,000 DKK216.9755 AUD
5,000 DKK1,084.8773 AUD
10,000 DKK2,169.7545 AUD
Get the DKK/AUD rate in your app
One GET request returns the latest DKK → 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/DKK/AUD"fetch('https://rate-api.com/api/v1/pair/DKK/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DKK = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DKK/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DKK = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DKK/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "DKK",
"to": "AUD"
},
"rate": 0.217,
"timestamp": 1790435208,
"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 DKKAustralian Dollar → Danish Krone4.6088Convert DKK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.