Convert USD to FJD
US Dollar → Fijian Dollar
1 USD = 2.247243 FJD(1 FJD = 0.44499 USD)
Currency converter
1 USD =
2.2472 FJD
USD to FJD: last 30 days
Over the last 30 days, 1 USD traded between 2.1914 and 2.2472 FJD, averaging 2.2144 FJD. The USD/FJD rate is up 2.55% since 2026-08-28.
- 30-day high
- 2.2472
- 2026-09-25
- 30-day low
- 2.1914
- 2026-08-28
- 30-day average
- 2.2144
- Days with data: 30
- 30-day change
- +2.55%
- since 2026-08-28
2.2472
2.19142026-08-28 → 2026-09-26
| Date | 1 USD in FJD | Daily change |
|---|---|---|
| 2026-09-26 | 2.2472 | 0.00% |
| 2026-09-25 | 2.2472 | +0.29% |
| 2026-09-24 | 2.2408 | +0.16% |
| 2026-09-23 | 2.2372 | -0.08% |
| 2026-09-22 | 2.2389 | +0.81% |
| 2026-09-21 | 2.2209 | +0.23% |
| 2026-09-20 | 2.2159 | +0.00% |
| 2026-09-19 | 2.2158 | -1.19% |
| 2026-09-18 | 2.2425 | +0.43% |
| 2026-09-17 | 2.233 | +0.91% |
| 2026-09-16 | 2.2129 | +0.02% |
| 2026-09-15 | 2.2124 | +0.11% |
| 2026-09-14 | 2.2099 | -0.34% |
| 2026-09-13 | 2.2174 | +0.20% |
| 2026-09-12 | 2.2129 | -0.33% |
| Date | 1 USD in FJD | Daily change |
|---|---|---|
| 2026-09-11 | 2.2202 | +0.51% |
| 2026-09-10 | 2.209 | +0.41% |
| 2026-09-09 | 2.2 | +0.15% |
| 2026-09-08 | 2.1967 | -0.15% |
| 2026-09-07 | 2.2 | -0.62% |
| 2026-09-06 | 2.2138 | +0.48% |
| 2026-09-05 | 2.2032 | +0.41% |
| 2026-09-04 | 2.1942 | -0.31% |
| 2026-09-03 | 2.201 | -0.23% |
| 2026-09-02 | 2.2061 | +0.36% |
| 2026-09-01 | 2.1983 | +0.01% |
| 2026-08-31 | 2.198 | +0.06% |
| 2026-08-30 | 2.1967 | -0.09% |
| 2026-08-29 | 2.1988 | +0.33% |
| 2026-08-28 | 2.1914 | — |
USD to FJD conversion table
1 USD2.2472 FJD
5 USD11.2362 FJD
10 USD22.4724 FJD
25 USD56.1811 FJD
50 USD112.3621 FJD
100 USD224.7243 FJD
500 USD1,123.6213 FJD
1,000 USD2,247.2425 FJD
5,000 USD11,236.213 FJD
10,000 USD22,472.425 FJD
Get the USD/FJD rate in your app
One GET request returns the latest USD → FJD 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/USD/FJD"fetch('https://rate-api.com/api/v1/pair/USD/FJD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} FJD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/FJD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} FJD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/FJD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} FJD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "FJD"
},
"rate": 2.2472,
"timestamp": 1790429428,
"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
FJD to USDFijian Dollar → US Dollar0.44499Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.