Convert DZD to USD
Algerian Dinar → US Dollar
1 DZD = 0.00748059 USD(1 USD = 133.67929 DZD)
Currency converter
1 DZD =
0.0074806 USD
DZD to USD: last 30 days
Over the last 30 days, 1 DZD traded between 0.0074646 and 0.0075176 USD, averaging 0.0074922 USD. The DZD/USD rate is down 0.41% since 2026-08-28.
- 30-day high
- 0.0075176
- 2026-09-11
- 30-day low
- 0.0074646
- 2026-09-23
- 30-day average
- 0.0074922
- Days with data: 30
- 30-day change
- -0.41%
- since 2026-08-28
0.0075176
0.00746462026-08-28 → 2026-09-26
| Date | 1 DZD in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.0074806 | 0.00% |
| 2026-09-25 | 0.0074806 | +0.17% |
| 2026-09-24 | 0.0074676 | +0.04% |
| 2026-09-23 | 0.0074646 | -0.12% |
| 2026-09-22 | 0.0074734 | -0.09% |
| 2026-09-21 | 0.0074804 | +0.11% |
| 2026-09-20 | 0.0074721 | -0.05% |
| 2026-09-19 | 0.007476 | +0.09% |
| 2026-09-18 | 0.0074696 | +0.05% |
| 2026-09-17 | 0.0074656 | -0.14% |
| 2026-09-16 | 0.0074764 | -0.05% |
| 2026-09-15 | 0.0074805 | -0.35% |
| 2026-09-14 | 0.0075064 | +0.10% |
| 2026-09-13 | 0.0074993 | -0.06% |
| 2026-09-12 | 0.0075039 | -0.18% |
| Date | 1 DZD in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.0075176 | +0.11% |
| 2026-09-10 | 0.0075093 | -0.02% |
| 2026-09-09 | 0.0075106 | +0.02% |
| 2026-09-08 | 0.0075091 | -0.01% |
| 2026-09-07 | 0.0075099 | +0.05% |
| 2026-09-06 | 0.0075058 | -0.00% |
| 2026-09-05 | 0.0075059 | +0.03% |
| 2026-09-04 | 0.0075034 | +0.09% |
| 2026-09-03 | 0.0074964 | +0.04% |
| 2026-09-02 | 0.0074931 | -0.08% |
| 2026-09-01 | 0.0074992 | -0.03% |
| 2026-08-31 | 0.0075017 | +0.07% |
| 2026-08-30 | 0.0074965 | -0.05% |
| 2026-08-29 | 0.0074999 | -0.15% |
| 2026-08-28 | 0.0075112 | — |
DZD to USD conversion table
1 DZD0.0074806 USD
5 DZD0.037403 USD
10 DZD0.074806 USD
25 DZD0.18701 USD
50 DZD0.37403 USD
100 DZD0.74806 USD
500 DZD3.7403 USD
1,000 DZD7.4806 USD
5,000 DZD37.403 USD
10,000 DZD74.8059 USD
Get the DZD/USD rate in your app
One GET request returns the latest DZD → 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/DZD/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/DZD/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DZD = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DZD/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DZD = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DZD/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 DZD = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "DZD",
"to": "USD"
},
"rate": 0.007481,
"timestamp": 1790432093,
"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 DZDUS Dollar → Algerian Dinar133.6793Convert DZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.