Convert FJD to INR
Fijian Dollar → Indian Rupee
1 FJD = 42.637734 INR(1 INR = 0.0234534 FJD)
Currency converter
1 FJD =
42.6377 INR
FJD to INR: last 30 days
Over the last 30 days, 1 FJD traded between 42.6377 and 43.5285 INR, averaging 43.0763 INR. The FJD/INR rate is down 2.05% since 2026-08-28.
- 30-day high
- 43.5285
- 2026-08-28
- 30-day low
- 42.6377
- 2026-09-25
- 30-day average
- 43.0763
- Days with data: 30
- 30-day change
- -2.05%
- since 2026-08-28
43.5285
42.63772026-08-28 → 2026-09-26
| Date | 1 FJD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 42.6377 | 0.00% |
| 2026-09-25 | 42.6377 | -0.43% |
| 2026-09-24 | 42.824 | +0.07% |
| 2026-09-23 | 42.7956 | +0.23% |
| 2026-09-22 | 42.6957 | -1.04% |
| 2026-09-21 | 43.1444 | -0.29% |
| 2026-09-20 | 43.2698 | -0.00% |
| 2026-09-19 | 43.2705 | +1.20% |
| 2026-09-18 | 42.7558 | -0.49% |
| 2026-09-17 | 42.9647 | -0.92% |
| 2026-09-16 | 43.3635 | -0.02% |
| 2026-09-15 | 43.3729 | +0.30% |
| 2026-09-14 | 43.2412 | +0.34% |
| 2026-09-13 | 43.0957 | -0.20% |
| 2026-09-12 | 43.1824 | +0.33% |
| Date | 1 FJD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 43.0406 | -0.38% |
| 2026-09-10 | 43.206 | -0.06% |
| 2026-09-09 | 43.2323 | +0.14% |
| 2026-09-08 | 43.1698 | +0.51% |
| 2026-09-07 | 42.9498 | +0.63% |
| 2026-09-06 | 42.6816 | -0.48% |
| 2026-09-05 | 42.8885 | -0.41% |
| 2026-09-04 | 43.0631 | +0.31% |
| 2026-09-03 | 42.9299 | -0.28% |
| 2026-09-02 | 43.0487 | -0.33% |
| 2026-09-01 | 43.1925 | -0.25% |
| 2026-08-31 | 43.2986 | -0.29% |
| 2026-08-30 | 43.4236 | +0.09% |
| 2026-08-29 | 43.3834 | -0.33% |
| 2026-08-28 | 43.5285 | — |
FJD to INR conversion table
1 FJD42.6377 INR
5 FJD213.1887 INR
10 FJD426.3773 INR
25 FJD1,065.9433 INR
50 FJD2,131.8867 INR
100 FJD4,263.7734 INR
500 FJD21,318.867 INR
1,000 FJD42,637.734 INR
5,000 FJD213,188.67 INR
10,000 FJD426,377.34 INR
Get the FJD/INR rate in your app
One GET request returns the latest FJD → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/FJD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 FJD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/FJD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 FJD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/FJD/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "FJD",
"to": "INR"
},
"rate": 42.6377,
"timestamp": 1790435150,
"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
INR to FJDIndian Rupee → Fijian Dollar0.023453Convert FJD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.