Convert USD to RWF
US Dollar → Rwandan Franc
1 USD = 1,475.8688 RWF(1 RWF = 0.000677567 USD)
Currency converter
1 USD =
1,475.8688 RWF
USD to RWF: last 30 days
Over the last 30 days, 1 USD traded between 1,461.351 and 1,480.3623 RWF, averaging 1,472.1896 RWF. The USD/RWF rate is up 0.39% since 2026-08-28.
- 30-day high
- 1,480.3623
- 2026-09-24
- 30-day low
- 1,461.351
- 2026-09-19
- 30-day average
- 1,472.1896
- Days with data: 30
- 30-day change
- +0.39%
- since 2026-08-28
1,480.3623
1,461.3512026-08-28 → 2026-09-26
| Date | 1 USD in RWF | Daily change |
|---|---|---|
| 2026-09-26 | 1,475.8688 | 0.00% |
| 2026-09-25 | 1,475.8688 | -0.30% |
| 2026-09-24 | 1,480.3623 | +0.37% |
| 2026-09-23 | 1,474.8546 | +0.22% |
| 2026-09-22 | 1,471.5958 | +0.29% |
| 2026-09-21 | 1,467.3069 | -0.44% |
| 2026-09-20 | 1,473.7181 | +0.85% |
| 2026-09-19 | 1,461.351 | -0.95% |
| 2026-09-18 | 1,475.3479 | +0.31% |
| 2026-09-17 | 1,470.7251 | -0.12% |
| 2026-09-16 | 1,472.5607 | -0.03% |
| 2026-09-15 | 1,472.9391 | +0.13% |
| 2026-09-14 | 1,471.0211 | -0.11% |
| 2026-09-13 | 1,472.595 | +0.38% |
| 2026-09-12 | 1,467.0002 | -0.54% |
| Date | 1 USD in RWF | Daily change |
|---|---|---|
| 2026-09-11 | 1,474.998 | +0.09% |
| 2026-09-10 | 1,473.7417 | +0.21% |
| 2026-09-09 | 1,470.6688 | -0.14% |
| 2026-09-08 | 1,472.7023 | +0.03% |
| 2026-09-07 | 1,472.2002 | -0.05% |
| 2026-09-06 | 1,472.9533 | +0.15% |
| 2026-09-05 | 1,470.8034 | -0.05% |
| 2026-09-04 | 1,471.5632 | -0.04% |
| 2026-09-03 | 1,472.216 | -0.14% |
| 2026-09-02 | 1,474.2688 | +0.11% |
| 2026-09-01 | 1,472.6288 | +0.12% |
| 2026-08-31 | 1,470.8804 | -0.02% |
| 2026-08-30 | 1,471.1191 | -0.04% |
| 2026-08-29 | 1,471.66 | +0.10% |
| 2026-08-28 | 1,470.1682 | — |
USD to RWF conversion table
1 USD1,475.8688 RWF
5 USD7,379.344 RWF
10 USD14,758.688 RWF
25 USD36,896.72 RWF
50 USD73,793.44 RWF
100 USD147,586.88 RWF
500 USD737,934.4 RWF
1,000 USD1,475,868.8 RWF
5,000 USD7,379,344 RWF
10,000 USD14,758,688 RWF
Get the USD/RWF rate in your app
One GET request returns the latest USD → RWF 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/USD/RWF"fetch('https://rate-api.com/api/v1/pair/USD/RWF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} RWF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/RWF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} RWF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/RWF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} RWF\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "RWF"
},
"rate": 1475.8688,
"timestamp": 1790429309,
"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
RWF to USDRwandan Franc → US Dollar0.00067757Convert USD to other currencies
Convert other currencies to RWF
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.