Convert USD to DJF
US Dollar → Djiboutian Franc
1 USD = 177.721 DJF(1 DJF = 0.0056268 USD)
Currency converter
1 USD =
177.721 DJF
USD to DJF: last 30 days
Over the last 30 days, 1 USD traded between 177.721 and 178.8798 DJF, averaging 178.1649 DJF. The USD/DJF rate is down 0.27% since 2026-08-28.
- 30-day high
- 178.8798
- 2026-08-31
- 30-day low
- 177.721
- 2026-09-23
- 30-day average
- 178.1649
- Days with data: 30
- 30-day change
- -0.27%
- since 2026-08-28
178.8798
177.7212026-08-28 → 2026-09-26
| Date | 1 USD in DJF | Daily change |
|---|---|---|
| 2026-09-26 | 177.721 | 0.00% |
| 2026-09-25 | 177.721 | 0.00% |
| 2026-09-24 | 177.721 | 0.00% |
| 2026-09-23 | 177.721 | -0.21% |
| 2026-09-22 | 178.0992 | +0.05% |
| 2026-09-21 | 178.0166 | -0.19% |
| 2026-09-20 | 178.3639 | +0.12% |
| 2026-09-19 | 178.1564 | +0.06% |
| 2026-09-18 | 178.0487 | -0.43% |
| 2026-09-17 | 178.8173 | +0.43% |
| 2026-09-16 | 178.0598 | +0.01% |
| 2026-09-15 | 178.0468 | -0.02% |
| 2026-09-14 | 178.0795 | -0.19% |
| 2026-09-13 | 178.4268 | +0.04% |
| 2026-09-12 | 178.3588 | +0.14% |
| Date | 1 USD in DJF | Daily change |
|---|---|---|
| 2026-09-11 | 178.1169 | +0.10% |
| 2026-09-10 | 177.9404 | +0.01% |
| 2026-09-09 | 177.9285 | -0.06% |
| 2026-09-08 | 178.0398 | -0.01% |
| 2026-09-07 | 178.0654 | -0.31% |
| 2026-09-06 | 178.6273 | +0.03% |
| 2026-09-05 | 178.5757 | +0.17% |
| 2026-09-04 | 178.2757 | +0.17% |
| 2026-09-03 | 177.98 | -0.07% |
| 2026-09-02 | 178.1087 | +0.02% |
| 2026-09-01 | 178.0791 | -0.45% |
| 2026-08-31 | 178.8798 | +0.17% |
| 2026-08-30 | 178.5701 | +0.21% |
| 2026-08-29 | 178.1896 | -0.01% |
| 2026-08-28 | 178.2111 | — |
USD to DJF conversion table
1 USD177.721 DJF
5 USD888.605 DJF
10 USD1,777.21 DJF
25 USD4,443.025 DJF
50 USD8,886.05 DJF
100 USD17,772.1 DJF
500 USD88,860.5 DJF
1,000 USD177,721 DJF
5,000 USD888,605 DJF
10,000 USD1,777,210 DJF
Get the USD/DJF rate in your app
One GET request returns the latest USD → DJF 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/DJF"fetch('https://rate-api.com/api/v1/pair/USD/DJF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} DJF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/DJF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} DJF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/DJF');
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']} DJF\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "DJF"
},
"rate": 177.721,
"timestamp": 1790429334,
"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
DJF to USDDjiboutian Franc → US Dollar0.0056268Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.