Convert USD to XPF
US Dollar → CFP Franc
1 USD = 104.64943 XPF(1 XPF = 0.00955571 USD)
Currency converter
1 USD =
104.6494 XPF
USD to XPF: last 30 days
Over the last 30 days, 1 USD traded between 102.4661 and 104.9809 XPF, averaging 103.3375 XPF. The USD/XPF rate is up 2.13% since 2026-08-28.
- 30-day high
- 104.9809
- 2026-09-24
- 30-day low
- 102.4661
- 2026-08-28
- 30-day average
- 103.3375
- Days with data: 30
- 30-day change
- +2.13%
- since 2026-08-28
104.9809
102.46612026-08-28 → 2026-09-26
| Date | 1 USD in XPF | Daily change |
|---|---|---|
| 2026-09-26 | 104.6494 | 0.00% |
| 2026-09-25 | 104.6494 | -0.32% |
| 2026-09-24 | 104.9809 | +0.39% |
| 2026-09-23 | 104.5761 | +0.56% |
| 2026-09-22 | 103.9961 | +0.02% |
| 2026-09-21 | 103.9707 | +0.08% |
| 2026-09-20 | 103.8918 | -0.00% |
| 2026-09-19 | 103.8963 | +0.05% |
| 2026-09-18 | 103.8427 | -0.25% |
| 2026-09-17 | 104.1003 | +0.69% |
| 2026-09-16 | 103.3843 | -0.06% |
| 2026-09-15 | 103.4458 | +0.28% |
| 2026-09-14 | 103.1592 | +0.27% |
| 2026-09-13 | 102.8844 | -0.00% |
| 2026-09-12 | 102.8871 | +0.03% |
| Date | 1 USD in XPF | Daily change |
|---|---|---|
| 2026-09-11 | 102.8594 | +0.32% |
| 2026-09-10 | 102.5361 | -0.06% |
| 2026-09-09 | 102.5967 | -0.05% |
| 2026-09-08 | 102.6528 | -0.12% |
| 2026-09-07 | 102.7805 | +0.06% |
| 2026-09-06 | 102.7222 | -0.03% |
| 2026-09-05 | 102.7499 | +0.08% |
| 2026-09-04 | 102.664 | -0.22% |
| 2026-09-03 | 102.8934 | -0.16% |
| 2026-09-02 | 103.0589 | +0.21% |
| 2026-09-01 | 102.8425 | -0.11% |
| 2026-08-31 | 102.9515 | -0.05% |
| 2026-08-30 | 103.0036 | -0.03% |
| 2026-08-29 | 103.0318 | +0.55% |
| 2026-08-28 | 102.4661 | — |
USD to XPF conversion table
1 USD104.6494 XPF
5 USD523.2471 XPF
10 USD1,046.4943 XPF
25 USD2,616.2357 XPF
50 USD5,232.4714 XPF
100 USD10,464.943 XPF
500 USD52,324.714 XPF
1,000 USD104,649.43 XPF
5,000 USD523,247.14 XPF
10,000 USD1,046,494.3 XPF
Get the USD/XPF rate in your app
One GET request returns the latest USD → XPF 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/XPF"fetch('https://rate-api.com/api/v1/pair/USD/XPF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} XPF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/XPF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} XPF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/XPF');
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']} XPF\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "XPF"
},
"rate": 104.6494,
"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
XPF to USDCFP Franc → US Dollar0.0095557Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.