Convert USD to DKK
US Dollar → Danish Krone
1 USD = 6.555731 DKK(1 DKK = 0.152538 USD)
Currency converter
1 USD =
6.5557 DKK
USD to DKK: last 30 days
Over the last 30 days, 1 USD traded between 6.415 and 6.5766 DKK, averaging 6.4772 DKK. The USD/DKK rate is up 2.11% since 2026-08-29.
- 30-day high
- 6.5766
- 2026-09-24
- 30-day low
- 6.415
- 2026-09-09
- 30-day average
- 6.4772
- Days with data: 30
- 30-day change
- +2.11%
- since 2026-08-29
6.5766
6.4152026-08-29 → 2026-09-27
| Date | 1 USD in DKK | Daily change |
|---|---|---|
| 2026-09-27 | 6.5557 | 0.00% |
| 2026-09-26 | 6.5557 | 0.00% |
| 2026-09-25 | 6.5557 | -0.32% |
| 2026-09-24 | 6.5766 | +0.39% |
| 2026-09-23 | 6.5512 | +0.46% |
| 2026-09-22 | 6.5215 | +0.24% |
| 2026-09-21 | 6.5061 | -0.26% |
| 2026-09-20 | 6.523 | 0.00% |
| 2026-09-19 | 6.523 | 0.00% |
| 2026-09-18 | 6.523 | +0.18% |
| 2026-09-17 | 6.511 | +0.48% |
| 2026-09-16 | 6.4796 | +0.02% |
| 2026-09-15 | 6.4782 | +0.10% |
| 2026-09-14 | 6.4716 | +0.36% |
| 2026-09-13 | 6.4482 | 0.00% |
| Date | 1 USD in DKK | Daily change |
|---|---|---|
| 2026-09-12 | 6.4482 | 0.00% |
| 2026-09-11 | 6.4482 | +0.20% |
| 2026-09-10 | 6.4352 | +0.31% |
| 2026-09-09 | 6.415 | -0.33% |
| 2026-09-08 | 6.436 | +0.07% |
| 2026-09-07 | 6.4314 | -0.00% |
| 2026-09-06 | 6.4315 | 0.00% |
| 2026-09-05 | 6.4315 | 0.00% |
| 2026-09-04 | 6.4315 | -0.06% |
| 2026-09-03 | 6.4353 | -0.32% |
| 2026-09-02 | 6.4562 | +0.11% |
| 2026-09-01 | 6.4494 | +0.05% |
| 2026-08-31 | 6.4463 | +0.41% |
| 2026-08-30 | 6.42 | 0.00% |
| 2026-08-29 | 6.42 | — |
USD to DKK conversion table
1 USD6.5557 DKK
5 USD32.7787 DKK
10 USD65.5573 DKK
25 USD163.8933 DKK
50 USD327.7866 DKK
100 USD655.5731 DKK
500 USD3,277.8655 DKK
1,000 USD6,555.7309 DKK
5,000 USD32,778.655 DKK
10,000 USD65,557.309 DKK
Get the USD/DKK rate in your app
One GET request returns the latest USD → 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/USD/DKK"fetch('https://rate-api.com/api/v1/pair/USD/DKK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} DKK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/DKK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} DKK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/DKK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} DKK\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "DKK"
},
"rate": 6.5557,
"timestamp": 1790470777,
"date": "2026-09-27"
}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 USDDanish Krone → US Dollar0.15254Convert USD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.