Convert USD to LYD
US Dollar → Libyan Dinar
1 USD = 6.394786 LYD(1 LYD = 0.156377 USD)
Currency converter
1 USD =
6.3948 LYD
USD to LYD: last 30 days
Over the last 30 days, 1 USD traded between 6.321 and 6.4063 LYD, averaging 6.3527 LYD. The USD/LYD rate is up 0.87% since 2026-08-28.
- 30-day high
- 6.4063
- 2026-09-24
- 30-day low
- 6.321
- 2026-09-09
- 30-day average
- 6.3527
- Days with data: 30
- 30-day change
- +0.87%
- since 2026-08-28
6.4063
6.3212026-08-28 → 2026-09-26
| Date | 1 USD in LYD | Daily change |
|---|---|---|
| 2026-09-26 | 6.3948 | 0.00% |
| 2026-09-25 | 6.3948 | -0.18% |
| 2026-09-24 | 6.4063 | +0.33% |
| 2026-09-23 | 6.3854 | +0.16% |
| 2026-09-22 | 6.3749 | +0.46% |
| 2026-09-21 | 6.346 | -0.05% |
| 2026-09-20 | 6.3494 | -0.01% |
| 2026-09-19 | 6.3499 | +0.08% |
| 2026-09-18 | 6.345 | -0.73% |
| 2026-09-17 | 6.3915 | +0.82% |
| 2026-09-16 | 6.3397 | -0.06% |
| 2026-09-15 | 6.3437 | +0.25% |
| 2026-09-14 | 6.3276 | +0.03% |
| 2026-09-13 | 6.3255 | +0.05% |
| 2026-09-12 | 6.3223 | -0.18% |
| Date | 1 USD in LYD | Daily change |
|---|---|---|
| 2026-09-11 | 6.3339 | +0.14% |
| 2026-09-10 | 6.3253 | +0.07% |
| 2026-09-09 | 6.321 | -0.53% |
| 2026-09-08 | 6.355 | +0.13% |
| 2026-09-07 | 6.347 | -0.04% |
| 2026-09-06 | 6.3493 | -0.17% |
| 2026-09-05 | 6.3599 | +0.00% |
| 2026-09-04 | 6.3599 | +0.19% |
| 2026-09-03 | 6.3476 | -0.04% |
| 2026-09-02 | 6.35 | +0.03% |
| 2026-09-01 | 6.3481 | -0.34% |
| 2026-08-31 | 6.3695 | +0.48% |
| 2026-08-30 | 6.3392 | +0.01% |
| 2026-08-29 | 6.3384 | -0.02% |
| 2026-08-28 | 6.3399 | — |
USD to LYD conversion table
1 USD6.3948 LYD
5 USD31.9739 LYD
10 USD63.9479 LYD
25 USD159.8697 LYD
50 USD319.7393 LYD
100 USD639.4786 LYD
500 USD3,197.3931 LYD
1,000 USD6,394.7862 LYD
5,000 USD31,973.931 LYD
10,000 USD63,947.862 LYD
Get the USD/LYD rate in your app
One GET request returns the latest USD → LYD 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/LYD"fetch('https://rate-api.com/api/v1/pair/USD/LYD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} LYD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/LYD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} LYD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/LYD');
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']} LYD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "LYD"
},
"rate": 6.3948,
"timestamp": 1790429301,
"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
LYD to USDLibyan Dinar → US Dollar0.15638Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.