Convert FJD to AUD
Fijian Dollar → Australian Dollar
1 FJD = 0.632968 AUD(1 AUD = 1.579859 FJD)
Currency converter
1 FJD =
0.63297 AUD
FJD to AUD: last 30 days
Over the last 30 days, 1 FJD traded between 0.62631 and 0.63699 AUD, averaging 0.63175 AUD. The FJD/AUD rate is down 0.20% since 2026-08-28.
- 30-day high
- 0.63699
- 2026-09-01
- 30-day low
- 0.62631
- 2026-09-18
- 30-day average
- 0.63175
- Days with data: 30
- 30-day change
- -0.20%
- since 2026-08-28
0.63699
0.626312026-08-28 → 2026-09-26
| Date | 1 FJD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.63297 | 0.00% |
| 2026-09-25 | 0.63297 | -0.34% |
| 2026-09-24 | 0.63511 | +0.42% |
| 2026-09-23 | 0.63247 | +0.68% |
| 2026-09-22 | 0.62817 | -0.42% |
| 2026-09-21 | 0.63082 | -0.48% |
| 2026-09-20 | 0.63384 | -0.00% |
| 2026-09-19 | 0.63385 | +1.20% |
| 2026-09-18 | 0.62631 | -0.51% |
| 2026-09-17 | 0.62951 | -0.64% |
| 2026-09-16 | 0.6336 | -0.11% |
| 2026-09-15 | 0.63432 | -0.06% |
| 2026-09-14 | 0.63468 | +0.94% |
| 2026-09-13 | 0.62876 | -0.20% |
| 2026-09-12 | 0.63002 | +0.33% |
| Date | 1 FJD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.62795 | -0.34% |
| 2026-09-10 | 0.63007 | +0.15% |
| 2026-09-09 | 0.62914 | -0.29% |
| 2026-09-08 | 0.631 | +0.15% |
| 2026-09-07 | 0.63004 | +0.48% |
| 2026-09-06 | 0.62706 | -0.48% |
| 2026-09-05 | 0.6301 | -0.41% |
| 2026-09-04 | 0.63266 | +0.17% |
| 2026-09-03 | 0.63161 | -0.41% |
| 2026-09-02 | 0.63419 | -0.44% |
| 2026-09-01 | 0.63699 | +0.27% |
| 2026-08-31 | 0.63526 | +0.40% |
| 2026-08-30 | 0.63271 | +0.09% |
| 2026-08-29 | 0.63213 | -0.33% |
| 2026-08-28 | 0.63424 | — |
FJD to AUD conversion table
1 FJD0.63297 AUD
5 FJD3.1648 AUD
10 FJD6.3297 AUD
25 FJD15.8242 AUD
50 FJD31.6484 AUD
100 FJD63.2968 AUD
500 FJD316.484 AUD
1,000 FJD632.968 AUD
5,000 FJD3,164.8402 AUD
10,000 FJD6,329.6804 AUD
Get the FJD/AUD rate in your app
One GET request returns the latest FJD → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/FJD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 FJD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/FJD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 FJD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/FJD/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "FJD",
"to": "AUD"
},
"rate": 0.633,
"timestamp": 1790435062,
"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
AUD to FJDAustralian Dollar → Fijian Dollar1.5799Convert FJD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.