Convert USD to XAF
US Dollar → Central African CFA Franc
1 USD = 575.2495 XAF(1 XAF = 0.00173838 USD)
Currency converter
1 USD =
575.2495 XAF
USD to XAF: last 30 days
Over the last 30 days, 1 USD traded between 563.2481 and 577.0714 XAF, averaging 568.0377 XAF. The USD/XAF rate is up 2.13% since 2026-08-28.
- 30-day high
- 577.0714
- 2026-09-24
- 30-day low
- 563.2481
- 2026-08-28
- 30-day average
- 568.0377
- Days with data: 30
- 30-day change
- +2.13%
- since 2026-08-28
577.0714
563.24812026-08-28 → 2026-09-26
| Date | 1 USD in XAF | Daily change |
|---|---|---|
| 2026-09-26 | 575.2495 | 0.00% |
| 2026-09-25 | 575.2495 | -0.32% |
| 2026-09-24 | 577.0714 | +0.39% |
| 2026-09-23 | 574.8462 | +0.56% |
| 2026-09-22 | 571.658 | +0.02% |
| 2026-09-21 | 571.5184 | +0.08% |
| 2026-09-20 | 571.085 | -0.00% |
| 2026-09-19 | 571.1098 | +0.05% |
| 2026-09-18 | 570.8148 | -0.25% |
| 2026-09-17 | 572.231 | +0.69% |
| 2026-09-16 | 568.2951 | -0.06% |
| 2026-09-15 | 568.6332 | +0.28% |
| 2026-09-14 | 567.0576 | +0.27% |
| 2026-09-13 | 565.5471 | -0.00% |
| 2026-09-12 | 565.5624 | +0.03% |
| Date | 1 USD in XAF | Daily change |
|---|---|---|
| 2026-09-11 | 565.4097 | +0.32% |
| 2026-09-10 | 563.6325 | -0.06% |
| 2026-09-09 | 563.9656 | -0.05% |
| 2026-09-08 | 564.2742 | -0.12% |
| 2026-09-07 | 564.9759 | +0.06% |
| 2026-09-06 | 564.6555 | -0.03% |
| 2026-09-05 | 564.8078 | +0.08% |
| 2026-09-04 | 564.3357 | -0.22% |
| 2026-09-03 | 565.5965 | -0.16% |
| 2026-09-02 | 566.5067 | +0.21% |
| 2026-09-01 | 565.3171 | -0.11% |
| 2026-08-31 | 565.9163 | -0.05% |
| 2026-08-30 | 566.2024 | -0.03% |
| 2026-08-29 | 566.3572 | +0.55% |
| 2026-08-28 | 563.2481 | — |
USD to XAF conversion table
1 USD575.2495 XAF
5 USD2,876.2475 XAF
10 USD5,752.495 XAF
25 USD14,381.237 XAF
50 USD28,762.475 XAF
100 USD57,524.95 XAF
500 USD287,624.75 XAF
1,000 USD575,249.5 XAF
5,000 USD2,876,247.5 XAF
10,000 USD5,752,495 XAF
Get the USD/XAF rate in your app
One GET request returns the latest USD → XAF 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/XAF"fetch('https://rate-api.com/api/v1/pair/USD/XAF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} XAF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/XAF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} XAF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/XAF');
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']} XAF\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "XAF"
},
"rate": 575.2495,
"timestamp": 1790429341,
"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
XAF to USDCentral African CFA Franc → US Dollar0.0017384Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.