Convert FJD to JPY
Fijian Dollar → Japanese Yen
1 FJD = 70.125991 JPY(1 JPY = 0.01426 FJD)
Currency converter
1 FJD =
70.126 JPY
FJD to JPY: last 30 days
Over the last 30 days, 1 FJD traded between 69.3803 and 72.8654 JPY, averaging 70.7866 JPY. The FJD/JPY rate is down 3.76% since 2026-08-28.
- 30-day high
- 72.8654
- 2026-08-28
- 30-day low
- 69.3803
- 2026-09-11
- 30-day average
- 70.7866
- Days with data: 30
- 30-day change
- -3.76%
- since 2026-08-28
72.8654
69.38032026-08-28 → 2026-09-26
| Date | 1 FJD in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 70.126 | 0.00% |
| 2026-09-25 | 70.126 | -1.08% |
| 2026-09-24 | 70.892 | +0.43% |
| 2026-09-23 | 70.5882 | +0.55% |
| 2026-09-22 | 70.2051 | -0.86% |
| 2026-09-21 | 70.8131 | -0.62% |
| 2026-09-20 | 71.2543 | -0.00% |
| 2026-09-19 | 71.2555 | +1.20% |
| 2026-09-18 | 70.408 | +0.98% |
| 2026-09-17 | 69.7225 | -0.49% |
| 2026-09-16 | 70.0657 | +0.01% |
| 2026-09-15 | 70.0583 | +0.18% |
| 2026-09-14 | 69.9343 | +0.67% |
| 2026-09-13 | 69.469 | -0.20% |
| 2026-09-12 | 69.6089 | +0.33% |
| Date | 1 FJD in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 69.3803 | -0.60% |
| 2026-09-10 | 69.7977 | +0.18% |
| 2026-09-09 | 69.669 | -0.82% |
| 2026-09-08 | 70.2426 | -0.14% |
| 2026-09-07 | 70.3406 | -0.34% |
| 2026-09-06 | 70.5789 | -0.48% |
| 2026-09-05 | 70.9211 | -0.41% |
| 2026-09-04 | 71.2098 | +0.46% |
| 2026-09-03 | 70.8805 | -2.02% |
| 2026-09-02 | 72.3446 | -0.70% |
| 2026-09-01 | 72.8563 | +0.26% |
| 2026-08-31 | 72.6709 | -0.03% |
| 2026-08-30 | 72.6899 | +0.09% |
| 2026-08-29 | 72.6225 | -0.33% |
| 2026-08-28 | 72.8654 | — |
FJD to JPY conversion table
1 FJD70.126 JPY
5 FJD350.63 JPY
10 FJD701.2599 JPY
25 FJD1,753.1498 JPY
50 FJD3,506.2995 JPY
100 FJD7,012.5991 JPY
500 FJD35,062.995 JPY
1,000 FJD70,125.991 JPY
5,000 FJD350,629.95 JPY
10,000 FJD701,259.91 JPY
Get the FJD/JPY rate in your app
One GET request returns the latest FJD → JPY 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/JPY"fetch('https://rate-api.com/api/v1/pair/FJD/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 FJD = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/FJD/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 FJD = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/FJD/JPY');
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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "FJD",
"to": "JPY"
},
"rate": 70.126,
"timestamp": 1790432083,
"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
JPY to FJDJapanese Yen → Fijian Dollar0.01426Convert FJD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.