Convert INR to DKK
Indian Rupee → Danish Krone
1 INR = 0.0684191 DKK(1 DKK = 14.615812 INR)
Currency converter
1 INR =
0.068419 DKK
INR to DKK: last 30 days
Over the last 30 days, 1 INR traded between 0.067303 and 0.068535 DKK, averaging 0.067858 DKK. The INR/DKK rate is up 1.66% since 2026-08-28.
- 30-day high
- 0.068535
- 2026-09-24
- 30-day low
- 0.067303
- 2026-08-28
- 30-day average
- 0.067858
- Days with data: 30
- 30-day change
- +1.66%
- since 2026-08-28
0.068535
0.0673032026-08-28 → 2026-09-26
| Date | 1 INR in DKK | Daily change |
|---|---|---|
| 2026-09-26 | 0.068419 | 0.00% |
| 2026-09-25 | 0.068419 | -0.17% |
| 2026-09-24 | 0.068535 | +0.16% |
| 2026-09-23 | 0.068427 | +0.30% |
| 2026-09-22 | 0.068224 | +0.48% |
| 2026-09-21 | 0.067899 | -0.20% |
| 2026-09-20 | 0.068033 | 0.00% |
| 2026-09-19 | 0.068033 | 0.00% |
| 2026-09-18 | 0.068033 | +0.25% |
| 2026-09-17 | 0.067865 | +0.51% |
| 2026-09-16 | 0.067524 | +0.02% |
| 2026-09-15 | 0.067509 | -0.32% |
| 2026-09-14 | 0.067723 | +0.36% |
| 2026-09-13 | 0.067478 | 0.00% |
| 2026-09-12 | 0.067478 | 0.00% |
| Date | 1 INR in DKK | Daily change |
|---|---|---|
| 2026-09-11 | 0.067478 | +0.08% |
| 2026-09-10 | 0.067427 | -0.03% |
| 2026-09-09 | 0.067448 | -0.62% |
| 2026-09-08 | 0.067869 | -0.29% |
| 2026-09-07 | 0.068064 | -0.00% |
| 2026-09-06 | 0.068065 | 0.00% |
| 2026-09-05 | 0.068065 | 0.00% |
| 2026-09-04 | 0.068065 | -0.06% |
| 2026-09-03 | 0.068106 | +0.18% |
| 2026-09-02 | 0.067981 | +0.08% |
| 2026-09-01 | 0.067924 | +0.28% |
| 2026-08-31 | 0.067735 | +0.64% |
| 2026-08-30 | 0.067303 | 0.00% |
| 2026-08-29 | 0.067303 | 0.00% |
| 2026-08-28 | 0.067303 | — |
INR to DKK conversion table
1 INR0.068419 DKK
5 INR0.3421 DKK
10 INR0.68419 DKK
25 INR1.7105 DKK
50 INR3.421 DKK
100 INR6.8419 DKK
500 INR34.2095 DKK
1,000 INR68.4191 DKK
5,000 INR342.0953 DKK
10,000 INR684.1905 DKK
Get the INR/DKK rate in your app
One GET request returns the latest INR → 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/INR/DKK"fetch('https://rate-api.com/api/v1/pair/INR/DKK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} DKK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/DKK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} DKK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/DKK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 INR = {$data['rate']} DKK\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "DKK"
},
"rate": 0.0684,
"timestamp": 1790447458,
"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
DKK to INRDanish Krone → Indian Rupee14.6158Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.