Convert USD to DZD
US Dollar → Algerian Dinar
1 USD = 133.67929 DZD(1 DZD = 0.00748059 USD)
Currency converter
1 USD =
133.6793 DZD
USD to DZD: last 30 days
Over the last 30 days, 1 USD traded between 133.021 and 133.9658 DZD, averaging 133.4725 DZD. The USD/DZD rate is up 0.41% since 2026-08-28.
- 30-day high
- 133.9658
- 2026-09-23
- 30-day low
- 133.021
- 2026-09-11
- 30-day average
- 133.4725
- Days with data: 30
- 30-day change
- +0.41%
- since 2026-08-28
133.9658
133.0212026-08-28 → 2026-09-26
| Date | 1 USD in DZD | Daily change |
|---|---|---|
| 2026-09-26 | 133.6793 | 0.00% |
| 2026-09-25 | 133.6793 | -0.17% |
| 2026-09-24 | 133.9112 | -0.04% |
| 2026-09-23 | 133.9658 | +0.12% |
| 2026-09-22 | 133.8076 | +0.09% |
| 2026-09-21 | 133.6833 | -0.11% |
| 2026-09-20 | 133.8311 | +0.05% |
| 2026-09-19 | 133.7622 | -0.09% |
| 2026-09-18 | 133.876 | -0.05% |
| 2026-09-17 | 133.9485 | +0.15% |
| 2026-09-16 | 133.7543 | +0.05% |
| 2026-09-15 | 133.6815 | +0.35% |
| 2026-09-14 | 133.2194 | -0.10% |
| 2026-09-13 | 133.3462 | +0.06% |
| 2026-09-12 | 133.2639 | +0.18% |
| Date | 1 USD in DZD | Daily change |
|---|---|---|
| 2026-09-11 | 133.021 | -0.11% |
| 2026-09-10 | 133.1674 | +0.02% |
| 2026-09-09 | 133.1443 | -0.02% |
| 2026-09-08 | 133.1724 | +0.01% |
| 2026-09-07 | 133.1582 | -0.05% |
| 2026-09-06 | 133.2305 | +0.00% |
| 2026-09-05 | 133.2286 | -0.03% |
| 2026-09-04 | 133.2731 | -0.09% |
| 2026-09-03 | 133.3981 | -0.04% |
| 2026-09-02 | 133.4566 | +0.08% |
| 2026-09-01 | 133.3475 | +0.03% |
| 2026-08-31 | 133.3028 | -0.07% |
| 2026-08-30 | 133.396 | +0.05% |
| 2026-08-29 | 133.3343 | +0.15% |
| 2026-08-28 | 133.1344 | — |
USD to DZD conversion table
1 USD133.6793 DZD
5 USD668.3965 DZD
10 USD1,336.7929 DZD
25 USD3,341.9823 DZD
50 USD6,683.9647 DZD
100 USD13,367.929 DZD
500 USD66,839.647 DZD
1,000 USD133,679.29 DZD
5,000 USD668,396.47 DZD
10,000 USD1,336,792.9 DZD
Get the USD/DZD rate in your app
One GET request returns the latest USD → DZD 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/DZD"fetch('https://rate-api.com/api/v1/pair/USD/DZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} DZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/DZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} DZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/DZD');
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']} DZD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "DZD"
},
"rate": 133.6793,
"timestamp": 1790429344,
"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
DZD to USDAlgerian Dinar → US Dollar0.0074806Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.