Convert CAD to RUB
Canadian Dollar → Russian Ruble
1 CAD = 59.665175 RUB(1 RUB = 0.0167602 CAD)
Currency converter
1 CAD =
59.6652 RUB
CAD to RUB: last 30 days
Over the last 30 days, 1 CAD traded between 59.6399 and 63.2956 RUB, averaging 61.1582 RUB. The CAD/RUB rate is down 4.08% since 2026-08-29.
- 30-day high
- 63.2956
- 2026-09-03
- 30-day low
- 59.6399
- 2026-09-22
- 30-day average
- 61.1582
- Days with data: 30
- 30-day change
- -4.08%
- since 2026-08-29
63.2956
59.63992026-08-29 → 2026-09-27
| Date | 1 CAD in RUB | Daily change |
|---|---|---|
| 2026-09-27 | 59.6652 | 0.00% |
| 2026-09-26 | 59.6652 | -0.74% |
| 2026-09-25 | 60.1106 | +0.02% |
| 2026-09-24 | 60.0972 | +0.44% |
| 2026-09-23 | 59.832 | +0.32% |
| 2026-09-22 | 59.6399 | -0.77% |
| 2026-09-21 | 60.1006 | +0.14% |
| 2026-09-20 | 60.0178 | -0.37% |
| 2026-09-19 | 60.2405 | -0.12% |
| 2026-09-18 | 60.3138 | +0.21% |
| 2026-09-17 | 60.1851 | -0.36% |
| 2026-09-16 | 60.4045 | -0.51% |
| 2026-09-15 | 60.7123 | -0.26% |
| 2026-09-14 | 60.8728 | +0.09% |
| 2026-09-13 | 60.8201 | +0.11% |
| Date | 1 CAD in RUB | Daily change |
|---|---|---|
| 2026-09-12 | 60.7526 | +0.27% |
| 2026-09-11 | 60.5861 | -1.52% |
| 2026-09-10 | 61.5197 | -1.34% |
| 2026-09-09 | 62.3531 | -0.18% |
| 2026-09-08 | 62.4681 | -0.32% |
| 2026-09-07 | 62.6714 | -0.08% |
| 2026-09-06 | 62.7237 | +0.86% |
| 2026-09-05 | 62.1907 | -0.96% |
| 2026-09-04 | 62.796 | -0.79% |
| 2026-09-03 | 63.2956 | +1.51% |
| 2026-09-02 | 62.3517 | +0.32% |
| 2026-09-01 | 62.1539 | +0.39% |
| 2026-08-31 | 61.9116 | -0.29% |
| 2026-08-30 | 62.0898 | -0.19% |
| 2026-08-29 | 62.2055 | — |
CAD to RUB conversion table
1 CAD59.6652 RUB
5 CAD298.3259 RUB
10 CAD596.6518 RUB
25 CAD1,491.6294 RUB
50 CAD2,983.2587 RUB
100 CAD5,966.5175 RUB
500 CAD29,832.587 RUB
1,000 CAD59,665.175 RUB
5,000 CAD298,325.87 RUB
10,000 CAD596,651.75 RUB
Get the CAD/RUB rate in your app
One GET request returns the latest CAD → 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/CAD/RUB"fetch('https://rate-api.com/api/v1/pair/CAD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CAD = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "RUB"
},
"rate": 59.6652,
"timestamp": 1790490078,
"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 CADRussian Ruble → Canadian Dollar0.01676Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.