Convert FJD to GBP
Fijian Dollar → British Pound
1 FJD = 0.335781 GBP(1 GBP = 2.978129 FJD)
Currency converter
1 FJD =
0.33578 GBP
FJD to GBP: last 30 days
Over the last 30 days, 1 FJD traded between 0.33343 and 0.3382 GBP, averaging 0.33563 GBP. The FJD/GBP rate is down 0.05% since 2026-08-28.
- 30-day high
- 0.3382
- 2026-09-19
- 30-day low
- 0.33343
- 2026-09-11
- 30-day average
- 0.33563
- Days with data: 30
- 30-day change
- -0.05%
- since 2026-08-28
0.3382
0.333432026-08-28 → 2026-09-26
| Date | 1 FJD in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.33578 | 0.00% |
| 2026-09-25 | 0.33578 | -0.53% |
| 2026-09-24 | 0.33758 | +0.27% |
| 2026-09-23 | 0.33668 | +0.73% |
| 2026-09-22 | 0.33424 | -0.57% |
| 2026-09-21 | 0.33615 | -0.60% |
| 2026-09-20 | 0.33819 | -0.00% |
| 2026-09-19 | 0.3382 | +1.20% |
| 2026-09-18 | 0.33418 | -0.18% |
| 2026-09-17 | 0.33479 | -0.31% |
| 2026-09-16 | 0.33583 | +0.18% |
| 2026-09-15 | 0.33522 | -0.03% |
| 2026-09-14 | 0.33532 | +0.44% |
| 2026-09-13 | 0.33386 | -0.20% |
| 2026-09-12 | 0.33453 | +0.33% |
| Date | 1 FJD in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.33343 | -0.42% |
| 2026-09-10 | 0.33483 | -0.08% |
| 2026-09-09 | 0.33509 | -0.29% |
| 2026-09-08 | 0.33608 | +0.04% |
| 2026-09-07 | 0.33593 | +0.62% |
| 2026-09-06 | 0.33386 | -0.48% |
| 2026-09-05 | 0.33547 | -0.41% |
| 2026-09-04 | 0.33684 | +0.07% |
| 2026-09-03 | 0.33662 | +0.13% |
| 2026-09-02 | 0.33619 | +0.00% |
| 2026-09-01 | 0.33619 | +0.05% |
| 2026-08-31 | 0.33603 | +0.26% |
| 2026-08-30 | 0.33515 | +0.09% |
| 2026-08-29 | 0.33484 | -0.33% |
| 2026-08-28 | 0.33596 | — |
FJD to GBP conversion table
1 FJD0.33578 GBP
5 FJD1.6789 GBP
10 FJD3.3578 GBP
25 FJD8.3945 GBP
50 FJD16.7891 GBP
100 FJD33.5781 GBP
500 FJD167.8907 GBP
1,000 FJD335.7814 GBP
5,000 FJD1,678.9068 GBP
10,000 FJD3,357.8135 GBP
Get the FJD/GBP rate in your app
One GET request returns the latest FJD → 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/FJD/GBP"fetch('https://rate-api.com/api/v1/pair/FJD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 FJD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/FJD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 FJD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/FJD/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 FJD = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "FJD",
"to": "GBP"
},
"rate": 0.3358,
"timestamp": 1790432147,
"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 FJDBritish Pound → Fijian Dollar2.9781Convert FJD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.