Convert RUB to CHF
Russian Ruble → Swiss Franc
1 RUB = 0.0097431 CHF(1 CHF = 102.63674 RUB)
Currency converter
1 RUB =
0.0097431 CHF
RUB to CHF: last 30 days
Over the last 30 days, 1 RUB traded between 0.0092608 and 0.0098192 CHF, averaging 0.009573 CHF. The RUB/CHF rate is up 3.54% since 2026-08-28.
- 30-day high
- 0.0098192
- 2026-09-20
- 30-day low
- 0.0092608
- 2026-09-03
- 30-day average
- 0.009573
- Days with data: 30
- 30-day change
- +3.54%
- since 2026-08-28
0.0098192
0.00926082026-08-28 → 2026-09-26
| Date | 1 RUB in CHF | Daily change |
|---|---|---|
| 2026-09-26 | 0.0097431 | 0.00% |
| 2026-09-25 | 0.0097431 | -0.14% |
| 2026-09-24 | 0.0097565 | -0.05% |
| 2026-09-23 | 0.0097617 | -0.22% |
| 2026-09-22 | 0.0097832 | +0.24% |
| 2026-09-21 | 0.0097595 | -0.61% |
| 2026-09-20 | 0.0098192 | +0.37% |
| 2026-09-19 | 0.0097829 | +0.12% |
| 2026-09-18 | 0.0097711 | -0.18% |
| 2026-09-17 | 0.0097887 | +0.63% |
| 2026-09-16 | 0.0097273 | +0.48% |
| 2026-09-15 | 0.0096813 | +0.24% |
| 2026-09-14 | 0.0096585 | -0.15% |
| 2026-09-13 | 0.0096732 | -0.11% |
| 2026-09-12 | 0.0096839 | -0.27% |
| Date | 1 RUB in CHF | Daily change |
|---|---|---|
| 2026-09-11 | 0.0097105 | +1.65% |
| 2026-09-10 | 0.0095532 | +1.62% |
| 2026-09-09 | 0.0094012 | -0.10% |
| 2026-09-08 | 0.0094103 | +0.72% |
| 2026-09-07 | 0.0093433 | -0.06% |
| 2026-09-06 | 0.009349 | -0.85% |
| 2026-09-05 | 0.0094292 | +0.97% |
| 2026-09-04 | 0.0093383 | +0.84% |
| 2026-09-03 | 0.0092608 | -1.22% |
| 2026-09-02 | 0.0093747 | -0.16% |
| 2026-09-01 | 0.0093899 | -0.16% |
| 2026-08-31 | 0.009405 | +0.59% |
| 2026-08-30 | 0.0093498 | +0.19% |
| 2026-08-29 | 0.0093324 | -0.82% |
| 2026-08-28 | 0.0094098 | — |
RUB to CHF conversion table
1 RUB0.0097431 CHF
5 RUB0.048716 CHF
10 RUB0.097431 CHF
25 RUB0.24358 CHF
50 RUB0.48716 CHF
100 RUB0.97431 CHF
500 RUB4.8716 CHF
1,000 RUB9.7431 CHF
5,000 RUB48.7155 CHF
10,000 RUB97.431 CHF
Get the RUB/CHF rate in your app
One GET request returns the latest RUB → CHF 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/CHF?precision=6"fetch('https://rate-api.com/api/v1/pair/RUB/CHF?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} CHF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/CHF?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} CHF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/CHF?precision=6');
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']} CHF\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "CHF"
},
"rate": 0.009743,
"timestamp": 1790429284,
"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
CHF to RUBSwiss Franc → Russian Ruble102.6367Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.