Convert CHF to RUB
Swiss Franc → Russian Ruble
1 CHF = 101.87615 RUB(1 RUB = 0.00981584 CHF)
Currency converter
1 CHF =
101.8762 RUB
CHF to RUB: last 30 days
Over the last 30 days, 1 CHF traded between 101.841 and 107.9824 RUB, averaging 104.3284 RUB. The CHF/RUB rate is down 4.93% since 2026-08-29.
- 30-day high
- 107.9824
- 2026-09-03
- 30-day low
- 101.841
- 2026-09-20
- 30-day average
- 104.3284
- Days with data: 30
- 30-day change
- -4.93%
- since 2026-08-29
107.9824
101.8412026-08-29 → 2026-09-27
| Date | 1 CHF in RUB | Daily change |
|---|---|---|
| 2026-09-27 | 101.8762 | 0.00% |
| 2026-09-26 | 101.8762 | -0.74% |
| 2026-09-25 | 102.6367 | +0.14% |
| 2026-09-24 | 102.4955 | +0.05% |
| 2026-09-23 | 102.4408 | +0.22% |
| 2026-09-22 | 102.2165 | -0.24% |
| 2026-09-21 | 102.464 | +0.61% |
| 2026-09-20 | 101.841 | -0.37% |
| 2026-09-19 | 102.2187 | -0.12% |
| 2026-09-18 | 102.3431 | +0.18% |
| 2026-09-17 | 102.159 | -0.63% |
| 2026-09-16 | 102.8031 | -0.47% |
| 2026-09-15 | 103.292 | -0.24% |
| 2026-09-14 | 103.5359 | +0.15% |
| 2026-09-13 | 103.3785 | +0.11% |
| Date | 1 CHF in RUB | Daily change |
|---|---|---|
| 2026-09-12 | 103.2638 | +0.27% |
| 2026-09-11 | 102.9808 | -1.62% |
| 2026-09-10 | 104.677 | -1.59% |
| 2026-09-09 | 106.3696 | +0.10% |
| 2026-09-08 | 106.2663 | -0.71% |
| 2026-09-07 | 107.0286 | +0.06% |
| 2026-09-06 | 106.963 | +0.86% |
| 2026-09-05 | 106.0541 | -0.96% |
| 2026-09-04 | 107.0863 | -0.83% |
| 2026-09-03 | 107.9824 | +1.23% |
| 2026-09-02 | 106.6696 | +0.16% |
| 2026-09-01 | 106.4974 | +0.16% |
| 2026-08-31 | 106.3267 | -0.59% |
| 2026-08-30 | 106.9545 | -0.19% |
| 2026-08-29 | 107.1538 | — |
CHF to RUB conversion table
1 CHF101.8762 RUB
5 CHF509.3808 RUB
10 CHF1,018.7615 RUB
25 CHF2,546.9038 RUB
50 CHF5,093.8077 RUB
100 CHF10,187.615 RUB
500 CHF50,938.077 RUB
1,000 CHF101,876.15 RUB
5,000 CHF509,380.77 RUB
10,000 CHF1,018,761.5 RUB
Get the CHF/RUB rate in your app
One GET request returns the latest CHF → 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/CHF/RUB"fetch('https://rate-api.com/api/v1/pair/CHF/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CHF = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "RUB"
},
"rate": 101.8762,
"timestamp": 1790490076,
"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
RUB to CHFRussian Ruble → Swiss Franc0.0098158Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.