Convert USD to ALL
US Dollar → Albanian Lek
1 USD = 80.505583 ALL(1 ALL = 0.0124215 USD)
Currency converter
1 USD =
80.5056 ALL
USD to ALL: last 30 days
Over the last 30 days, 1 USD traded between 79.1083 and 80.5056 ALL, averaging 79.5824 ALL. The USD/ALL rate is up 1.56% since 2026-08-28.
- 30-day high
- 80.5056
- 2026-09-25
- 30-day low
- 79.1083
- 2026-09-10
- 30-day average
- 79.5824
- Days with data: 30
- 30-day change
- +1.56%
- since 2026-08-28
80.5056
79.10832026-08-28 → 2026-09-26
| Date | 1 USD in ALL | Daily change |
|---|---|---|
| 2026-09-26 | 80.5056 | 0.00% |
| 2026-09-25 | 80.5056 | +0.12% |
| 2026-09-24 | 80.4072 | +0.50% |
| 2026-09-23 | 80.0084 | +0.32% |
| 2026-09-22 | 79.7544 | -0.02% |
| 2026-09-21 | 79.7719 | +0.04% |
| 2026-09-20 | 79.7375 | +0.01% |
| 2026-09-19 | 79.7329 | -0.28% |
| 2026-09-18 | 79.955 | +0.57% |
| 2026-09-17 | 79.5002 | +0.01% |
| 2026-09-16 | 79.4934 | -0.06% |
| 2026-09-15 | 79.5442 | +0.43% |
| 2026-09-14 | 79.1997 | -0.00% |
| 2026-09-13 | 79.2016 | -0.05% |
| 2026-09-12 | 79.2391 | -0.10% |
| Date | 1 USD in ALL | Daily change |
|---|---|---|
| 2026-09-11 | 79.3182 | +0.27% |
| 2026-09-10 | 79.1083 | -0.11% |
| 2026-09-09 | 79.1948 | -0.11% |
| 2026-09-08 | 79.2844 | -0.04% |
| 2026-09-07 | 79.3198 | +0.01% |
| 2026-09-06 | 79.3127 | -0.03% |
| 2026-09-05 | 79.3394 | +0.11% |
| 2026-09-04 | 79.251 | -0.30% |
| 2026-09-03 | 79.4876 | -0.27% |
| 2026-09-02 | 79.7005 | +0.08% |
| 2026-09-01 | 79.6395 | +0.14% |
| 2026-08-31 | 79.5316 | -0.06% |
| 2026-08-30 | 79.581 | +0.01% |
| 2026-08-29 | 79.5752 | +0.38% |
| 2026-08-28 | 79.2707 | — |
USD to ALL conversion table
1 USD80.5056 ALL
5 USD402.5279 ALL
10 USD805.0558 ALL
25 USD2,012.6396 ALL
50 USD4,025.2791 ALL
100 USD8,050.5583 ALL
500 USD40,252.791 ALL
1,000 USD80,505.583 ALL
5,000 USD402,527.91 ALL
10,000 USD805,055.83 ALL
Get the USD/ALL rate in your app
One GET request returns the latest USD → ALL 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/ALL"fetch('https://rate-api.com/api/v1/pair/USD/ALL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} ALL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/ALL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} ALL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/ALL');
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']} ALL\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "ALL"
},
"rate": 80.5056,
"timestamp": 1790429289,
"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
ALL to USDAlbanian Lek → US Dollar0.012421Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.