Convert FKP to GBP
Falkland Islands Pound → British Pound
1 FKP = 1 GBP(1 GBP = 1 FKP)
Currency converter
1 FKP =
1 GBP
FKP to GBP: last 30 days
Over the last 30 days, 1 FKP traded between 0.99637 and 1.0038 GBP, averaging 1.0002 GBP. The FKP/GBP rate is down 0.05% since 2026-08-28.
- 30-day high
- 1.0038
- 2026-09-20
- 30-day low
- 0.99637
- 2026-08-29
- 30-day average
- 1.0002
- Days with data: 30
- 30-day change
- -0.05%
- since 2026-08-28
1.0038
0.996372026-08-28 → 2026-09-26
| Date | 1 FKP in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 1 | 0.00% |
| 2026-09-25 | 1 | 0.00% |
| 2026-09-24 | 1 | 0.00% |
| 2026-09-23 | 1 | -0.14% |
| 2026-09-22 | 1.0014 | +0.23% |
| 2026-09-21 | 0.99913 | -0.47% |
| 2026-09-20 | 1.0038 | +0.01% |
| 2026-09-19 | 1.0037 | +0.36% |
| 2026-09-18 | 1.0001 | +0.00% |
| 2026-09-17 | 1.0001 | -0.18% |
| 2026-09-16 | 1.0019 | +0.18% |
| 2026-09-15 | 1.0001 | -0.07% |
| 2026-09-14 | 1.0008 | -0.07% |
| 2026-09-13 | 1.0015 | -0.00% |
| 2026-09-12 | 1.0015 | +0.21% |
| Date | 1 FKP in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.99936 | -0.32% |
| 2026-09-10 | 1.0026 | +0.40% |
| 2026-09-09 | 0.99865 | -0.08% |
| 2026-09-08 | 0.99945 | +0.10% |
| 2026-09-07 | 0.99842 | -0.05% |
| 2026-09-06 | 0.99893 | -0.01% |
| 2026-09-05 | 0.99905 | -0.10% |
| 2026-09-04 | 1 | +0.01% |
| 2026-09-03 | 0.99987 | -0.15% |
| 2026-09-02 | 1.0014 | +0.08% |
| 2026-09-01 | 1.0006 | +0.02% |
| 2026-08-31 | 1.0004 | +0.39% |
| 2026-08-30 | 0.99656 | +0.02% |
| 2026-08-29 | 0.99637 | -0.42% |
| 2026-08-28 | 1.0005 | — |
FKP to GBP conversion table
1 FKP1 GBP
5 FKP5 GBP
10 FKP10 GBP
25 FKP25 GBP
50 FKP50 GBP
100 FKP100 GBP
500 FKP500 GBP
1,000 FKP1,000 GBP
5,000 FKP5,000 GBP
10,000 FKP10,000 GBP
Get the FKP/GBP rate in your app
One GET request returns the latest FKP → GBP 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/FKP/GBP"fetch('https://rate-api.com/api/v1/pair/FKP/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 FKP = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/FKP/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 FKP = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/FKP/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 FKP = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "FKP",
"to": "GBP"
},
"rate": 1,
"timestamp": 1790435239,
"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
GBP to FKPBritish Pound → Falkland Islands Pound1Convert FKP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.