Convert DKK to INR
Danish Krone → Indian Rupee
1 DKK = 14.615812 INR(1 INR = 0.0684191 DKK)
Currency converter
1 DKK =
14.6158 INR
DKK to INR: last 30 days
Over the last 30 days, 1 DKK traded between 14.5911 and 14.8583 INR, averaging 14.7371 INR. The DKK/INR rate is down 1.63% since 2026-08-28.
- 30-day high
- 14.8583
- 2026-08-28
- 30-day low
- 14.5911
- 2026-09-24
- 30-day average
- 14.7371
- Days with data: 30
- 30-day change
- -1.63%
- since 2026-08-28
14.8583
14.59112026-08-28 → 2026-09-26
| Date | 1 DKK in INR | Daily change |
|---|---|---|
| 2026-09-26 | 14.6158 | 0.00% |
| 2026-09-25 | 14.6158 | +0.17% |
| 2026-09-24 | 14.5911 | -0.16% |
| 2026-09-23 | 14.6142 | -0.30% |
| 2026-09-22 | 14.6577 | -0.48% |
| 2026-09-21 | 14.7277 | +0.20% |
| 2026-09-20 | 14.6988 | 0.00% |
| 2026-09-19 | 14.6988 | 0.00% |
| 2026-09-18 | 14.6988 | -0.25% |
| 2026-09-17 | 14.7351 | -0.50% |
| 2026-09-16 | 14.8096 | -0.02% |
| 2026-09-15 | 14.8128 | +0.32% |
| 2026-09-14 | 14.7661 | -0.36% |
| 2026-09-13 | 14.8196 | 0.00% |
| 2026-09-12 | 14.8196 | 0.00% |
| Date | 1 DKK in INR | Daily change |
|---|---|---|
| 2026-09-11 | 14.8196 | -0.08% |
| 2026-09-10 | 14.8309 | +0.03% |
| 2026-09-09 | 14.8262 | +0.62% |
| 2026-09-08 | 14.7343 | +0.29% |
| 2026-09-07 | 14.692 | +0.00% |
| 2026-09-06 | 14.6918 | 0.00% |
| 2026-09-05 | 14.6918 | 0.00% |
| 2026-09-04 | 14.6918 | +0.06% |
| 2026-09-03 | 14.6831 | -0.18% |
| 2026-09-02 | 14.7099 | -0.08% |
| 2026-09-01 | 14.7223 | -0.28% |
| 2026-08-31 | 14.7635 | -0.64% |
| 2026-08-30 | 14.8583 | 0.00% |
| 2026-08-29 | 14.8583 | 0.00% |
| 2026-08-28 | 14.8583 | — |
DKK to INR conversion table
1 DKK14.6158 INR
5 DKK73.0791 INR
10 DKK146.1581 INR
25 DKK365.3953 INR
50 DKK730.7906 INR
100 DKK1,461.5812 INR
500 DKK7,307.9058 INR
1,000 DKK14,615.812 INR
5,000 DKK73,079.058 INR
10,000 DKK146,158.12 INR
Get the DKK/INR rate in your app
One GET request returns the latest DKK → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/DKK/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DKK = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DKK/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DKK = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DKK/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "DKK",
"to": "INR"
},
"rate": 14.6158,
"timestamp": 1790435293,
"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
INR to DKKIndian Rupee → Danish Krone0.068419Convert DKK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.