Convert GBP to XPF
British Pound → CFP Franc
1 GBP = 138.68527 XPF(1 XPF = 0.00721057 GBP)
Currency converter
1 GBP =
138.6853 XPF
GBP to XPF: last 30 days
Over the last 30 days, 1 GBP traded between 138.5696 and 139.9432 XPF, averaging 139.0417 XPF. The GBP/XPF rate is down 0.35% since 2026-08-28.
- 30-day high
- 139.9432
- 2026-08-29
- 30-day low
- 138.5696
- 2026-09-18
- 30-day average
- 139.0417
- Days with data: 30
- 30-day change
- -0.35%
- since 2026-08-28
139.9432
138.56962026-08-28 → 2026-09-26
| Date | 1 GBP in XPF | Daily change |
|---|---|---|
| 2026-09-26 | 138.6853 | 0.00% |
| 2026-09-25 | 138.6853 | -0.07% |
| 2026-09-24 | 138.7804 | -0.04% |
| 2026-09-23 | 138.8386 | -0.10% |
| 2026-09-22 | 138.9727 | -0.21% |
| 2026-09-21 | 139.2663 | +0.46% |
| 2026-09-20 | 138.6352 | -0.00% |
| 2026-09-19 | 138.6412 | +0.05% |
| 2026-09-18 | 138.5696 | -0.49% |
| 2026-09-17 | 139.2497 | +0.10% |
| 2026-09-16 | 139.1126 | -0.26% |
| 2026-09-15 | 139.4787 | +0.19% |
| 2026-09-14 | 139.2086 | +0.17% |
| 2026-09-13 | 138.9766 | -0.00% |
| 2026-09-12 | 138.9803 | +0.03% |
| Date | 1 GBP in XPF | Daily change |
|---|---|---|
| 2026-09-11 | 138.9428 | +0.22% |
| 2026-09-10 | 138.6316 | -0.39% |
| 2026-09-09 | 139.1707 | +0.09% |
| 2026-09-08 | 139.0488 | -0.01% |
| 2026-09-07 | 139.0692 | +0.06% |
| 2026-09-06 | 138.9828 | -0.03% |
| 2026-09-05 | 139.0203 | +0.08% |
| 2026-09-04 | 138.9041 | +0.02% |
| 2026-09-03 | 138.8762 | -0.06% |
| 2026-09-02 | 138.9553 | -0.14% |
| 2026-09-01 | 139.1569 | -0.17% |
| 2026-08-31 | 139.3874 | -0.37% |
| 2026-08-30 | 139.9049 | -0.03% |
| 2026-08-29 | 139.9432 | +0.55% |
| 2026-08-28 | 139.1749 | — |
GBP to XPF conversion table
1 GBP138.6853 XPF
5 GBP693.4264 XPF
10 GBP1,386.8527 XPF
25 GBP3,467.1318 XPF
50 GBP6,934.2636 XPF
100 GBP13,868.527 XPF
500 GBP69,342.636 XPF
1,000 GBP138,685.27 XPF
5,000 GBP693,426.36 XPF
10,000 GBP1,386,852.7 XPF
Get the GBP/XPF rate in your app
One GET request returns the latest GBP → 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/GBP/XPF"fetch('https://rate-api.com/api/v1/pair/GBP/XPF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} XPF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/XPF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} XPF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/XPF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} XPF\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "XPF"
},
"rate": 138.6853,
"timestamp": 1790429427,
"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 GBPCFP Franc → British Pound0.0072106Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.