Convert DJF to USD
Djiboutian Franc → US Dollar
1 DJF = 0.0056268 USD(1 USD = 177.721 DJF)
Currency converter
1 DJF =
0.0056268 USD
DJF to USD: last 30 days
Over the last 30 days, 1 DJF traded between 0.0055903 and 0.0056268 USD, averaging 0.0056128 USD. The DJF/USD rate is up 0.28% since 2026-08-28.
- 30-day high
- 0.0056268
- 2026-09-23
- 30-day low
- 0.0055903
- 2026-08-31
- 30-day average
- 0.0056128
- Days with data: 30
- 30-day change
- +0.28%
- since 2026-08-28
0.0056268
0.00559032026-08-28 → 2026-09-26
| Date | 1 DJF in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.0056268 | 0.00% |
| 2026-09-25 | 0.0056268 | 0.00% |
| 2026-09-24 | 0.0056268 | 0.00% |
| 2026-09-23 | 0.0056268 | +0.21% |
| 2026-09-22 | 0.0056148 | -0.05% |
| 2026-09-21 | 0.0056175 | +0.20% |
| 2026-09-20 | 0.0056065 | -0.12% |
| 2026-09-19 | 0.005613 | -0.06% |
| 2026-09-18 | 0.0056164 | +0.43% |
| 2026-09-17 | 0.0055923 | -0.42% |
| 2026-09-16 | 0.0056161 | -0.01% |
| 2026-09-15 | 0.0056165 | +0.02% |
| 2026-09-14 | 0.0056155 | +0.20% |
| 2026-09-13 | 0.0056045 | -0.04% |
| 2026-09-12 | 0.0056067 | -0.14% |
| Date | 1 DJF in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.0056143 | -0.10% |
| 2026-09-10 | 0.0056199 | -0.01% |
| 2026-09-09 | 0.0056202 | +0.06% |
| 2026-09-08 | 0.0056167 | +0.01% |
| 2026-09-07 | 0.0056159 | +0.32% |
| 2026-09-06 | 0.0055982 | -0.03% |
| 2026-09-05 | 0.0055999 | -0.17% |
| 2026-09-04 | 0.0056093 | -0.17% |
| 2026-09-03 | 0.0056186 | +0.07% |
| 2026-09-02 | 0.0056145 | -0.02% |
| 2026-09-01 | 0.0056155 | +0.45% |
| 2026-08-31 | 0.0055903 | -0.17% |
| 2026-08-30 | 0.0056 | -0.21% |
| 2026-08-29 | 0.005612 | +0.01% |
| 2026-08-28 | 0.0056113 | — |
DJF to USD conversion table
1 DJF0.0056268 USD
5 DJF0.028134 USD
10 DJF0.056268 USD
25 DJF0.14067 USD
50 DJF0.28134 USD
100 DJF0.56268 USD
500 DJF2.8134 USD
1,000 DJF5.6268 USD
5,000 DJF28.134 USD
10,000 DJF56.268 USD
Get the DJF/USD rate in your app
One GET request returns the latest DJF → USD 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/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/DJF/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DJF = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DJF/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DJF = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DJF/USD?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']} USD\n";Example response
{
"success": true,
"pair": {
"from": "DJF",
"to": "USD"
},
"rate": 0.005627,
"timestamp": 1790432083,
"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
USD to DJFUS Dollar → Djiboutian Franc177.721Convert DJF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.