Convert USD to LBP
US Dollar → Lebanese Pound
1 USD = 89,859.392 LBP(1 LBP = 0.0000111285 USD)
Currency converter
1 USD =
89,859.392 LBP
USD to LBP: last 30 days
Over the last 30 days, 1 USD traded between 88,830.655 and 90,354.589 LBP, averaging 89,798.637 LBP. The USD/LBP rate is up 0.23% since 2026-08-28.
- 30-day high
- 90,354.589
- 2026-09-23
- 30-day low
- 88,830.655
- 2026-09-03
- 30-day average
- 89,798.637
- Days with data: 30
- 30-day change
- +0.23%
- since 2026-08-28
90,354.589
88,830.6552026-08-28 → 2026-09-26
| Date | 1 USD in LBP | Daily change |
|---|---|---|
| 2026-09-26 | 89,859.392 | 0.00% |
| 2026-09-25 | 89,859.392 | +0.14% |
| 2026-09-24 | 89,732.446 | -0.69% |
| 2026-09-23 | 90,354.589 | +0.68% |
| 2026-09-22 | 89,742.749 | +0.16% |
| 2026-09-21 | 89,595.728 | -0.54% |
| 2026-09-20 | 90,078.81 | +0.23% |
| 2026-09-19 | 89,872.07 | +0.36% |
| 2026-09-18 | 89,549.968 | -0.83% |
| 2026-09-17 | 90,295.311 | +0.80% |
| 2026-09-16 | 89,574.255 | -0.44% |
| 2026-09-15 | 89,974.483 | +0.26% |
| 2026-09-14 | 89,743.252 | -0.16% |
| 2026-09-13 | 89,888.998 | -0.32% |
| 2026-09-12 | 90,179.782 | +0.25% |
| Date | 1 USD in LBP | Daily change |
|---|---|---|
| 2026-09-11 | 89,956.003 | +0.33% |
| 2026-09-10 | 89,655.865 | -0.09% |
| 2026-09-09 | 89,739.31 | -0.02% |
| 2026-09-08 | 89,759.82 | +0.05% |
| 2026-09-07 | 89,719.143 | -0.26% |
| 2026-09-06 | 89,954.057 | -0.21% |
| 2026-09-05 | 90,141.351 | +0.30% |
| 2026-09-04 | 89,869.345 | +1.17% |
| 2026-09-03 | 88,830.655 | -1.12% |
| 2026-09-02 | 89,839.206 | +0.32% |
| 2026-09-01 | 89,548.833 | -0.62% |
| 2026-08-31 | 90,106.049 | +0.17% |
| 2026-08-30 | 89,949.213 | +1.14% |
| 2026-08-29 | 88,933.018 | -0.81% |
| 2026-08-28 | 89,656.022 | — |
USD to LBP conversion table
1 USD89,859.392 LBP
5 USD449,296.96 LBP
10 USD898,593.92 LBP
25 USD2,246,484.8 LBP
50 USD4,492,969.6 LBP
100 USD8,985,939.2 LBP
500 USD44,929,696 LBP
1,000 USD89,859,392 LBP
5,000 USD449,296,962 LBP
10,000 USD898,593,924 LBP
Get the USD/LBP rate in your app
One GET request returns the latest USD → LBP 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/LBP"fetch('https://rate-api.com/api/v1/pair/USD/LBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} LBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/LBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} LBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/LBP');
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']} LBP\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "LBP"
},
"rate": 89859.3924,
"timestamp": 1790429345,
"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
LBP to USDLebanese Pound → US Dollar0.000011128Convert USD to other currencies
Convert other currencies to LBP
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.