Convert XAF to USD
Central African CFA Franc → US Dollar
1 XAF = 0.00173838 USD(1 USD = 575.2495 XAF)
Currency converter
1 XAF =
0.0017384 USD
XAF to USD: last 30 days
Over the last 30 days, 1 XAF traded between 0.0017329 and 0.0017754 USD, averaging 0.0017605 USD. The XAF/USD rate is down 2.09% since 2026-08-28.
- 30-day high
- 0.0017754
- 2026-08-28
- 30-day low
- 0.0017329
- 2026-09-24
- 30-day average
- 0.0017605
- Days with data: 30
- 30-day change
- -2.09%
- since 2026-08-28
0.0017754
0.00173292026-08-28 → 2026-09-26
| Date | 1 XAF in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.0017384 | 0.00% |
| 2026-09-25 | 0.0017384 | +0.32% |
| 2026-09-24 | 0.0017329 | -0.39% |
| 2026-09-23 | 0.0017396 | -0.55% |
| 2026-09-22 | 0.0017493 | -0.02% |
| 2026-09-21 | 0.0017497 | -0.08% |
| 2026-09-20 | 0.0017511 | +0.00% |
| 2026-09-19 | 0.001751 | -0.05% |
| 2026-09-18 | 0.0017519 | +0.25% |
| 2026-09-17 | 0.0017475 | -0.69% |
| 2026-09-16 | 0.0017596 | +0.06% |
| 2026-09-15 | 0.0017586 | -0.28% |
| 2026-09-14 | 0.0017635 | -0.27% |
| 2026-09-13 | 0.0017682 | +0.00% |
| 2026-09-12 | 0.0017682 | -0.03% |
| Date | 1 XAF in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.0017686 | -0.31% |
| 2026-09-10 | 0.0017742 | +0.06% |
| 2026-09-09 | 0.0017732 | +0.05% |
| 2026-09-08 | 0.0017722 | +0.12% |
| 2026-09-07 | 0.00177 | -0.06% |
| 2026-09-06 | 0.001771 | +0.03% |
| 2026-09-05 | 0.0017705 | -0.08% |
| 2026-09-04 | 0.001772 | +0.22% |
| 2026-09-03 | 0.001768 | +0.16% |
| 2026-09-02 | 0.0017652 | -0.21% |
| 2026-09-01 | 0.0017689 | +0.11% |
| 2026-08-31 | 0.001767 | +0.05% |
| 2026-08-30 | 0.0017662 | +0.03% |
| 2026-08-29 | 0.0017657 | -0.55% |
| 2026-08-28 | 0.0017754 | — |
XAF to USD conversion table
1 XAF0.0017384 USD
5 XAF0.0086919 USD
10 XAF0.017384 USD
25 XAF0.043459 USD
50 XAF0.086919 USD
100 XAF0.17384 USD
500 XAF0.86919 USD
1,000 XAF1.7384 USD
5,000 XAF8.6919 USD
10,000 XAF17.3838 USD
Get the XAF/USD rate in your app
One GET request returns the latest XAF → USD 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/XAF/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/XAF/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XAF = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XAF/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XAF = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XAF/USD?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 XAF = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "XAF",
"to": "USD"
},
"rate": 0.001738,
"timestamp": 1790432091,
"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
USD to XAFUS Dollar → Central African CFA Franc575.2495Convert XAF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.