Convert RUB to CZK
Russian Ruble → Czech Koruna
1 RUB = 0.251134 CZK(1 CZK = 3.981943 RUB)
Currency converter
1 RUB =
0.25113 CZK
RUB to CZK: last 30 days
Over the last 30 days, 1 RUB traded between 0.23887 and 0.25355 CZK, averaging 0.24653 CZK. The RUB/CZK rate is up 3.49% since 2026-08-28.
- 30-day high
- 0.25355
- 2026-09-22
- 30-day low
- 0.23887
- 2026-09-03
- 30-day average
- 0.24653
- Days with data: 30
- 30-day change
- +3.49%
- since 2026-08-28
0.25355
0.238872026-08-28 → 2026-09-26
| Date | 1 RUB in CZK | Daily change |
|---|---|---|
| 2026-09-26 | 0.25113 | 0.00% |
| 2026-09-25 | 0.25113 | -0.74% |
| 2026-09-24 | 0.253 | -0.19% |
| 2026-09-23 | 0.25348 | -0.03% |
| 2026-09-22 | 0.25355 | +0.69% |
| 2026-09-21 | 0.25182 | -0.30% |
| 2026-09-20 | 0.25258 | +0.37% |
| 2026-09-19 | 0.25164 | +0.12% |
| 2026-09-18 | 0.25134 | -0.01% |
| 2026-09-17 | 0.25136 | +0.43% |
| 2026-09-16 | 0.25029 | +0.48% |
| 2026-09-15 | 0.2491 | +0.12% |
| 2026-09-14 | 0.2488 | +0.18% |
| 2026-09-13 | 0.24835 | -0.11% |
| 2026-09-12 | 0.24863 | -0.27% |
| Date | 1 RUB in CZK | Daily change |
|---|---|---|
| 2026-09-11 | 0.24931 | +1.50% |
| 2026-09-10 | 0.24562 | +1.33% |
| 2026-09-09 | 0.24239 | +0.38% |
| 2026-09-08 | 0.24149 | +0.46% |
| 2026-09-07 | 0.24038 | -0.03% |
| 2026-09-06 | 0.24045 | -0.85% |
| 2026-09-05 | 0.24251 | +0.97% |
| 2026-09-04 | 0.24017 | +0.54% |
| 2026-09-03 | 0.23887 | -0.74% |
| 2026-09-02 | 0.24065 | -0.35% |
| 2026-09-01 | 0.24149 | -0.20% |
| 2026-08-31 | 0.24197 | +0.36% |
| 2026-08-30 | 0.24111 | +0.19% |
| 2026-08-29 | 0.24066 | -0.82% |
| 2026-08-28 | 0.24266 | — |
RUB to CZK conversion table
1 RUB0.25113 CZK
5 RUB1.2557 CZK
10 RUB2.5113 CZK
25 RUB6.2783 CZK
50 RUB12.5567 CZK
100 RUB25.1134 CZK
500 RUB125.5668 CZK
1,000 RUB251.1337 CZK
5,000 RUB1,255.6684 CZK
10,000 RUB2,511.3369 CZK
Get the RUB/CZK rate in your app
One GET request returns the latest RUB → CZK 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/RUB/CZK"fetch('https://rate-api.com/api/v1/pair/RUB/CZK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} CZK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/CZK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} CZK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/CZK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} CZK\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "CZK"
},
"rate": 0.2511,
"timestamp": 1790429366,
"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
CZK to RUBCzech Koruna → Russian Ruble3.9819Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.