Convert AUD to FJD
Australian Dollar → Fijian Dollar
1 AUD = 1.579884 FJD(1 FJD = 0.632958 AUD)
Currency converter
1 AUD =
1.5799 FJD
AUD to FJD: last 30 days
Over the last 30 days, 1 AUD traded between 1.5699 and 1.5967 FJD, averaging 1.583 FJD. The AUD/FJD rate is down 0.13% since 2026-08-29.
- 30-day high
- 1.5967
- 2026-09-18
- 30-day low
- 1.5699
- 2026-09-01
- 30-day average
- 1.583
- Days with data: 30
- 30-day change
- -0.13%
- since 2026-08-29
1.5967
1.56992026-08-29 → 2026-09-27
| Date | 1 AUD in FJD | Daily change |
|---|---|---|
| 2026-09-27 | 1.5799 | 0.00% |
| 2026-09-26 | 1.5799 | +0.00% |
| 2026-09-25 | 1.5799 | +0.34% |
| 2026-09-24 | 1.5745 | -0.42% |
| 2026-09-23 | 1.5811 | -0.68% |
| 2026-09-22 | 1.5919 | +0.42% |
| 2026-09-21 | 1.5852 | +0.48% |
| 2026-09-20 | 1.5777 | +0.00% |
| 2026-09-19 | 1.5777 | -1.19% |
| 2026-09-18 | 1.5967 | +0.51% |
| 2026-09-17 | 1.5885 | +0.65% |
| 2026-09-16 | 1.5783 | +0.11% |
| 2026-09-15 | 1.5765 | +0.06% |
| 2026-09-14 | 1.5756 | -0.93% |
| 2026-09-13 | 1.5904 | +0.20% |
| Date | 1 AUD in FJD | Daily change |
|---|---|---|
| 2026-09-12 | 1.5872 | -0.33% |
| 2026-09-11 | 1.5925 | +0.34% |
| 2026-09-10 | 1.5871 | -0.15% |
| 2026-09-09 | 1.5895 | +0.30% |
| 2026-09-08 | 1.5848 | -0.15% |
| 2026-09-07 | 1.5872 | -0.47% |
| 2026-09-06 | 1.5948 | +0.48% |
| 2026-09-05 | 1.5871 | +0.41% |
| 2026-09-04 | 1.5806 | -0.17% |
| 2026-09-03 | 1.5832 | +0.41% |
| 2026-09-02 | 1.5768 | +0.44% |
| 2026-09-01 | 1.5699 | -0.27% |
| 2026-08-31 | 1.5742 | -0.40% |
| 2026-08-30 | 1.5805 | -0.09% |
| 2026-08-29 | 1.582 | — |
AUD to FJD conversion table
1 AUD1.5799 FJD
5 AUD7.8994 FJD
10 AUD15.7988 FJD
25 AUD39.4971 FJD
50 AUD78.9942 FJD
100 AUD157.9884 FJD
500 AUD789.9419 FJD
1,000 AUD1,579.8838 FJD
5,000 AUD7,899.419 FJD
10,000 AUD15,798.838 FJD
Get the AUD/FJD rate in your app
One GET request returns the latest AUD → 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/AUD/FJD"fetch('https://rate-api.com/api/v1/pair/AUD/FJD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} FJD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/FJD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} FJD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/FJD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} FJD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "FJD"
},
"rate": 1.5799,
"timestamp": 1790470832,
"date": "2026-09-27"
}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 AUDFijian Dollar → Australian Dollar0.63296Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.