Convert DKK to RUB
Danish Krone → Russian Ruble
1 DKK = 12.967748 RUB(1 RUB = 0.0771144 DKK)
Currency converter
1 DKK =
12.9677 RUB
DKK to RUB: last 30 days
Over the last 30 days, 1 DKK traded between 12.8434 and 13.5654 RUB, averaging 13.1685 RUB. The DKK/RUB rate is down 2.59% since 2026-08-28.
- 30-day high
- 13.5654
- 2026-09-03
- 30-day low
- 12.8434
- 2026-09-22
- 30-day average
- 13.1685
- Days with data: 30
- 30-day change
- -2.59%
- since 2026-08-28
13.5654
12.84342026-08-28 → 2026-09-26
| Date | 1 DKK in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 12.9677 | 0.00% |
| 2026-09-25 | 12.9677 | +0.52% |
| 2026-09-24 | 12.9004 | +0.26% |
| 2026-09-23 | 12.8674 | +0.19% |
| 2026-09-22 | 12.8434 | -0.72% |
| 2026-09-21 | 12.9363 | +0.36% |
| 2026-09-20 | 12.8905 | -0.37% |
| 2026-09-19 | 12.9384 | -0.12% |
| 2026-09-18 | 12.9541 | +0.14% |
| 2026-09-17 | 12.9364 | -0.45% |
| 2026-09-16 | 12.9943 | -0.39% |
| 2026-09-15 | 13.0455 | -0.13% |
| 2026-09-14 | 13.0623 | -0.07% |
| 2026-09-13 | 13.071 | +0.11% |
| 2026-09-12 | 13.0565 | +0.27% |
| Date | 1 DKK in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 13.0207 | -1.42% |
| 2026-09-10 | 13.2079 | -1.30% |
| 2026-09-09 | 13.3823 | -0.13% |
| 2026-09-08 | 13.3992 | -0.50% |
| 2026-09-07 | 13.467 | +0.06% |
| 2026-09-06 | 13.4586 | +0.86% |
| 2026-09-05 | 13.3442 | -0.96% |
| 2026-09-04 | 13.4741 | -0.67% |
| 2026-09-03 | 13.5654 | +0.87% |
| 2026-09-02 | 13.4483 | +0.48% |
| 2026-09-01 | 13.3841 | +0.36% |
| 2026-08-31 | 13.3364 | -0.46% |
| 2026-08-30 | 13.3986 | -0.19% |
| 2026-08-29 | 13.4236 | +0.83% |
| 2026-08-28 | 13.3132 | — |
DKK to RUB conversion table
1 DKK12.9677 RUB
5 DKK64.8387 RUB
10 DKK129.6775 RUB
25 DKK324.1937 RUB
50 DKK648.3874 RUB
100 DKK1,296.7748 RUB
500 DKK6,483.8739 RUB
1,000 DKK12,967.748 RUB
5,000 DKK64,838.739 RUB
10,000 DKK129,677.48 RUB
Get the DKK/RUB rate in your app
One GET request returns the latest DKK → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/DKK/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DKK = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DKK/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DKK = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DKK/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "DKK",
"to": "RUB"
},
"rate": 12.9677,
"timestamp": 1790435079,
"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
RUB to DKKRussian Ruble → Danish Krone0.077114Convert DKK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.