Convert RWF to CAD
Rwandan Franc → Canadian Dollar
1 RWF = 0.000958267 CAD(1 CAD = 1,043.5501 RWF)
Currency converter
1 RWF =
0.00095827 CAD
RWF to CAD: last 30 days
Over the last 30 days, 1 RWF traded between 0.00093617 and 0.0009587 CAD, averaging 0.00094541 CAD. The RWF/CAD rate is up 1.69% since 2026-08-28.
- 30-day high
- 0.0009587
- 2026-09-19
- 30-day low
- 0.00093617
- 2026-09-09
- 30-day average
- 0.00094541
- Days with data: 30
- 30-day change
- +1.69%
- since 2026-08-28
0.0009587
0.000936172026-08-28 → 2026-09-26
| Date | 1 RWF in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.00095827 | 0.00% |
| 2026-09-25 | 0.00095827 | +0.49% |
| 2026-09-24 | 0.00095363 | -0.17% |
| 2026-09-23 | 0.00095528 | +0.10% |
| 2026-09-22 | 0.00095434 | -0.01% |
| 2026-09-21 | 0.0009544 | +0.39% |
| 2026-09-20 | 0.00095066 | -0.84% |
| 2026-09-19 | 0.0009587 | +0.96% |
| 2026-09-18 | 0.00094961 | -0.21% |
| 2026-09-17 | 0.00095157 | +0.53% |
| 2026-09-16 | 0.00094658 | +0.16% |
| 2026-09-15 | 0.00094505 | +0.11% |
| 2026-09-14 | 0.00094404 | +0.32% |
| 2026-09-13 | 0.00094106 | -0.38% |
| 2026-09-12 | 0.00094465 | +0.55% |
| Date | 1 RWF in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.00093953 | +0.22% |
| 2026-09-10 | 0.00093748 | +0.14% |
| 2026-09-09 | 0.00093617 | -0.13% |
| 2026-09-08 | 0.00093739 | -0.14% |
| 2026-09-07 | 0.00093873 | +0.20% |
| 2026-09-06 | 0.00093689 | -0.15% |
| 2026-09-05 | 0.00093826 | +0.05% |
| 2026-09-04 | 0.00093778 | +0.10% |
| 2026-09-03 | 0.00093682 | -0.82% |
| 2026-09-02 | 0.00094454 | +0.15% |
| 2026-09-01 | 0.00094308 | -0.10% |
| 2026-08-31 | 0.00094406 | +0.25% |
| 2026-08-30 | 0.00094173 | +0.04% |
| 2026-08-29 | 0.00094139 | -0.10% |
| 2026-08-28 | 0.00094234 | — |
RWF to CAD conversion table
1 RWF0.00095827 CAD
5 RWF0.0047913 CAD
10 RWF0.0095827 CAD
25 RWF0.023957 CAD
50 RWF0.047913 CAD
100 RWF0.095827 CAD
500 RWF0.47913 CAD
1,000 RWF0.95827 CAD
5,000 RWF4.7913 CAD
10,000 RWF9.5827 CAD
Get the RWF/CAD rate in your app
One GET request returns the latest RWF → CAD 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/RWF/CAD?precision=6"fetch('https://rate-api.com/api/v1/pair/RWF/CAD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RWF = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RWF/CAD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RWF = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RWF/CAD?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 RWF = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "RWF",
"to": "CAD"
},
"rate": 0.000958,
"timestamp": 1790435096,
"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
CAD to RWFCanadian Dollar → Rwandan Franc1,043.5501Convert RWF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.