Convert FJD to CAD
Fijian Dollar → Canadian Dollar
1 FJD = 0.629339 CAD(1 CAD = 1.588969 FJD)
Currency converter
1 FJD =
0.62934 CAD
FJD to CAD: last 30 days
Over the last 30 days, 1 FJD traded between 0.62335 and 0.63227 CAD, averaging 0.62853 CAD. The FJD/CAD rate is down 0.45% since 2026-08-28.
- 30-day high
- 0.63227
- 2026-09-19
- 30-day low
- 0.62335
- 2026-09-06
- 30-day average
- 0.62853
- Days with data: 30
- 30-day change
- -0.45%
- since 2026-08-28
0.63227
0.623352026-08-28 → 2026-09-26
| Date | 1 FJD in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.62934 | 0.00% |
| 2026-09-25 | 0.62934 | -0.11% |
| 2026-09-24 | 0.63001 | +0.04% |
| 2026-09-23 | 0.62977 | +0.40% |
| 2026-09-22 | 0.62728 | -0.52% |
| 2026-09-21 | 0.63055 | -0.27% |
| 2026-09-20 | 0.63226 | -0.00% |
| 2026-09-19 | 0.63227 | +1.20% |
| 2026-09-18 | 0.62475 | -0.32% |
| 2026-09-17 | 0.62674 | -0.50% |
| 2026-09-16 | 0.62989 | +0.11% |
| 2026-09-15 | 0.62917 | +0.12% |
| 2026-09-14 | 0.62839 | +0.55% |
| 2026-09-13 | 0.62497 | -0.20% |
| 2026-09-12 | 0.62623 | +0.33% |
| Date | 1 FJD in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.62417 | -0.21% |
| 2026-09-10 | 0.62545 | -0.06% |
| 2026-09-09 | 0.62583 | -0.42% |
| 2026-09-08 | 0.62845 | +0.04% |
| 2026-09-07 | 0.62818 | +0.77% |
| 2026-09-06 | 0.62335 | -0.48% |
| 2026-09-05 | 0.62637 | -0.41% |
| 2026-09-04 | 0.62893 | +0.37% |
| 2026-09-03 | 0.62662 | -0.73% |
| 2026-09-02 | 0.6312 | -0.09% |
| 2026-09-01 | 0.63176 | +0.00% |
| 2026-08-31 | 0.63176 | +0.17% |
| 2026-08-30 | 0.63066 | +0.09% |
| 2026-08-29 | 0.63008 | -0.33% |
| 2026-08-28 | 0.63219 | — |
FJD to CAD conversion table
1 FJD0.62934 CAD
5 FJD3.1467 CAD
10 FJD6.2934 CAD
25 FJD15.7335 CAD
50 FJD31.4669 CAD
100 FJD62.9339 CAD
500 FJD314.6694 CAD
1,000 FJD629.3388 CAD
5,000 FJD3,146.6941 CAD
10,000 FJD6,293.3882 CAD
Get the FJD/CAD rate in your app
One GET request returns the latest FJD → CAD 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/CAD"fetch('https://rate-api.com/api/v1/pair/FJD/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 FJD = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/FJD/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 FJD = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/FJD/CAD');
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']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "FJD",
"to": "CAD"
},
"rate": 0.6293,
"timestamp": 1790435099,
"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
CAD to FJDCanadian Dollar → Fijian Dollar1.589Convert FJD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.