Convert USD to CDF
US Dollar → Congolese Franc
1 USD = 2,310.2264 CDF(1 CDF = 0.000432858 USD)
Currency converter
1 USD =
2,310.2264 CDF
USD to CDF: last 30 days
Over the last 30 days, 1 USD traded between 2,267.3372 and 2,310.9993 CDF, averaging 2,297.5417 CDF. The USD/CDF rate is up 0.66% since 2026-08-28.
- 30-day high
- 2,310.9993
- 2026-09-18
- 30-day low
- 2,267.3372
- 2026-09-06
- 30-day average
- 2,297.5417
- Days with data: 30
- 30-day change
- +0.66%
- since 2026-08-28
2,310.9993
2,267.33722026-08-28 → 2026-09-26
| Date | 1 USD in CDF | Daily change |
|---|---|---|
| 2026-09-26 | 2,310.2264 | 0.00% |
| 2026-09-25 | 2,310.2264 | -0.00% |
| 2026-09-24 | 2,310.246 | -0.00% |
| 2026-09-23 | 2,310.25 | +0.04% |
| 2026-09-22 | 2,309.3792 | -0.04% |
| 2026-09-21 | 2,310.2484 | +1.09% |
| 2026-09-20 | 2,285.3405 | -0.76% |
| 2026-09-19 | 2,302.84 | -0.35% |
| 2026-09-18 | 2,310.9993 | +0.24% |
| 2026-09-17 | 2,305.5491 | -0.20% |
| 2026-09-16 | 2,310.2497 | +0.09% |
| 2026-09-15 | 2,308.1395 | -0.01% |
| 2026-09-14 | 2,308.3602 | +1.80% |
| 2026-09-13 | 2,267.6243 | -0.06% |
| 2026-09-12 | 2,268.9472 | -1.72% |
| Date | 1 USD in CDF | Daily change |
|---|---|---|
| 2026-09-11 | 2,308.7497 | +0.02% |
| 2026-09-10 | 2,308.2499 | +0.11% |
| 2026-09-09 | 2,305.6686 | -0.05% |
| 2026-09-08 | 2,306.7495 | +0.23% |
| 2026-09-07 | 2,301.4994 | +1.51% |
| 2026-09-06 | 2,267.3372 | -0.51% |
| 2026-09-05 | 2,279.0152 | -0.99% |
| 2026-09-04 | 2,301.6932 | +0.35% |
| 2026-09-03 | 2,293.568 | -0.04% |
| 2026-09-02 | 2,294.4038 | -0.03% |
| 2026-09-01 | 2,294.9993 | +0.96% |
| 2026-08-31 | 2,273.193 | -0.16% |
| 2026-08-30 | 2,276.8574 | -0.60% |
| 2026-08-29 | 2,290.64 | -0.19% |
| 2026-08-28 | 2,294.9995 | — |
USD to CDF conversion table
1 USD2,310.2264 CDF
5 USD11,551.132 CDF
10 USD23,102.264 CDF
25 USD57,755.659 CDF
50 USD115,511.32 CDF
100 USD231,022.64 CDF
500 USD1,155,113.2 CDF
1,000 USD2,310,226.4 CDF
5,000 USD11,551,132 CDF
10,000 USD23,102,264 CDF
Get the USD/CDF rate in your app
One GET request returns the latest USD → CDF 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/CDF"fetch('https://rate-api.com/api/v1/pair/USD/CDF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} CDF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/CDF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} CDF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/CDF');
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']} CDF\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "CDF"
},
"rate": 2310.2264,
"timestamp": 1790429286,
"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
CDF to USDCongolese Franc → US Dollar0.00043286Convert USD to other currencies
Convert other currencies to CDF
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.