Convert AUD to XPF
Australian Dollar → CFP Franc
1 AUD = 73.570741 XPF(1 XPF = 0.0135924 AUD)
Currency converter
1 AUD =
73.5707 XPF
AUD to XPF: last 30 days
Over the last 30 days, 1 AUD traded between 73.4432 and 74.2118 XPF, averaging 73.8685 XPF. The AUD/XPF rate is down 0.21% since 2026-08-28.
- 30-day high
- 74.2118
- 2026-09-21
- 30-day low
- 73.4432
- 2026-09-01
- 30-day average
- 73.8685
- Days with data: 30
- 30-day change
- -0.21%
- since 2026-08-28
74.2118
73.44322026-08-28 → 2026-09-26
| Date | 1 AUD in XPF | Daily change |
|---|---|---|
| 2026-09-26 | 73.5707 | 0.00% |
| 2026-09-25 | 73.5707 | -0.27% |
| 2026-09-24 | 73.7663 | -0.19% |
| 2026-09-23 | 73.9079 | -0.05% |
| 2026-09-22 | 73.9449 | -0.36% |
| 2026-09-21 | 74.2118 | +0.33% |
| 2026-09-20 | 73.9707 | -0.00% |
| 2026-09-19 | 73.9739 | +0.05% |
| 2026-09-18 | 73.9357 | -0.16% |
| 2026-09-17 | 74.0559 | +0.43% |
| 2026-09-16 | 73.7353 | +0.03% |
| 2026-09-15 | 73.7108 | +0.22% |
| 2026-09-14 | 73.5485 | -0.33% |
| 2026-09-13 | 73.7946 | -0.00% |
| 2026-09-12 | 73.7965 | +0.03% |
| Date | 1 AUD in XPF | Daily change |
|---|---|---|
| 2026-09-11 | 73.7766 | +0.14% |
| 2026-09-10 | 73.6715 | -0.61% |
| 2026-09-09 | 74.1252 | +0.09% |
| 2026-09-08 | 74.0587 | -0.12% |
| 2026-09-07 | 74.1508 | +0.21% |
| 2026-09-06 | 73.9967 | -0.03% |
| 2026-09-05 | 74.0166 | +0.08% |
| 2026-09-04 | 73.9548 | -0.08% |
| 2026-09-03 | 74.0133 | +0.48% |
| 2026-09-02 | 73.6609 | +0.30% |
| 2026-09-01 | 73.4432 | -0.39% |
| 2026-08-31 | 73.7317 | -0.51% |
| 2026-08-30 | 74.1086 | -0.03% |
| 2026-08-29 | 74.1289 | +0.55% |
| 2026-08-28 | 73.7219 | — |
AUD to XPF conversion table
1 AUD73.5707 XPF
5 AUD367.8537 XPF
10 AUD735.7074 XPF
25 AUD1,839.2685 XPF
50 AUD3,678.5371 XPF
100 AUD7,357.0741 XPF
500 AUD36,785.371 XPF
1,000 AUD73,570.741 XPF
5,000 AUD367,853.71 XPF
10,000 AUD735,707.41 XPF
Get the AUD/XPF rate in your app
One GET request returns the latest AUD → 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/AUD/XPF"fetch('https://rate-api.com/api/v1/pair/AUD/XPF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} XPF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/XPF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} XPF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/XPF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} XPF\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "XPF"
},
"rate": 73.5707,
"timestamp": 1790429338,
"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 AUDCFP Franc → Australian Dollar0.013592Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.