Rwandan Franc (RWF) FRw
Rwandan Franc exchange rates against major world currencies, checked hourly and updated as sources publish.
1 RWF = 0.000677567 USD
1 RWF in other currencies
RWF to USDUS Dollar0.00067757RWF to EUREuro0.0005942RWF to GBPBritish Pound0.00051128RWF to JPYJapanese Yen0.10678RWF to CNYChinese Yuan0.0045487RWF to CADCanadian Dollar0.00095827RWF to AUDAustralian Dollar0.00096379RWF to CHFSwiss Franc0.00056122RWF to INRIndian Rupee0.064923RWF to RUBRussian Ruble0.057602
Convert to RWF
USD to RWFUS Dollar1,475.8688EUR to RWFEuro1,682.9332GBP to RWFBritish Pound1,955.8756JPY to RWFJapanese Yen9.3652CNY to RWFChinese Yuan219.8447CAD to RWFCanadian Dollar1,043.5501AUD to RWFAustralian Dollar1,037.5667CHF to RWFSwiss Franc1,781.8245INR to RWFIndian Rupee15.4029RUB to RWFRussian Ruble17.3605
Get RWF rates in your app
One GET request returns every rate against RWF as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=RWF"fetch('https://rate-api.com/api/v1/latest?base=RWF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RWF = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=RWF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RWF = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=RWF');
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['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.