Convert DJF to AUD
Djiboutian Franc → Australian Dollar
1 DJF = 0.00800374 AUD(1 AUD = 124.94159 DJF)
Currency converter
1 DJF =
0.0080037 AUD
DJF to AUD: last 30 days
Over the last 30 days, 1 DJF traded between 0.0077715 and 0.0080078 AUD, averaging 0.0078521 AUD. The DJF/AUD rate is up 2.62% since 2026-08-28.
- 30-day high
- 0.0080078
- 2026-09-24
- 30-day low
- 0.0077715
- 2026-09-06
- 30-day average
- 0.0078521
- Days with data: 30
- 30-day change
- +2.62%
- since 2026-08-28
0.0080078
0.00777152026-08-28 → 2026-09-26
| Date | 1 DJF in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.0080037 | 0.00% |
| 2026-09-25 | 0.0080037 | -0.05% |
| 2026-09-24 | 0.0080078 | +0.58% |
| 2026-09-23 | 0.0079616 | +0.82% |
| 2026-09-22 | 0.0078967 | +0.34% |
| 2026-09-21 | 0.0078701 | -0.05% |
| 2026-09-20 | 0.0078744 | -0.12% |
| 2026-09-19 | 0.0078835 | -0.06% |
| 2026-09-18 | 0.0078883 | +0.35% |
| 2026-09-17 | 0.0078611 | -0.17% |
| 2026-09-16 | 0.0078743 | -0.10% |
| 2026-09-15 | 0.0078822 | +0.08% |
| 2026-09-14 | 0.0078763 | +0.80% |
| 2026-09-13 | 0.0078138 | -0.04% |
| 2026-09-12 | 0.0078168 | -0.14% |
| Date | 1 DJF in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.0078274 | +0.07% |
| 2026-09-10 | 0.0078217 | +0.55% |
| 2026-09-09 | 0.007779 | -0.08% |
| 2026-09-08 | 0.0077853 | +0.01% |
| 2026-09-07 | 0.0077842 | +0.16% |
| 2026-09-06 | 0.0077715 | -0.03% |
| 2026-09-05 | 0.0077737 | -0.17% |
| 2026-09-04 | 0.0077868 | -0.31% |
| 2026-09-03 | 0.007811 | -0.56% |
| 2026-09-02 | 0.0078553 | -0.10% |
| 2026-09-01 | 0.0078634 | +0.74% |
| 2026-08-31 | 0.0078058 | +0.29% |
| 2026-08-30 | 0.0077835 | -0.21% |
| 2026-08-29 | 0.0078001 | +0.01% |
| 2026-08-28 | 0.0077992 | — |
DJF to AUD conversion table
1 DJF0.0080037 AUD
5 DJF0.040019 AUD
10 DJF0.080037 AUD
25 DJF0.20009 AUD
50 DJF0.40019 AUD
100 DJF0.80037 AUD
500 DJF4.0019 AUD
1,000 DJF8.0037 AUD
5,000 DJF40.0187 AUD
10,000 DJF80.0374 AUD
Get the DJF/AUD rate in your app
One GET request returns the latest DJF → 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/DJF/AUD?precision=6"fetch('https://rate-api.com/api/v1/pair/DJF/AUD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DJF = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DJF/AUD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DJF = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DJF/AUD?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 DJF = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "DJF",
"to": "AUD"
},
"rate": 0.008004,
"timestamp": 1790432079,
"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 DJFAustralian Dollar → Djiboutian Franc124.9416Convert DJF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.