Convert LBP to USD
Lebanese Pound → US Dollar
1 LBP = 0.0000111285 USD(1 USD = 89,859.392 LBP)
Currency converter
1 LBP =
0.000011128 USD
LBP to USD: last 30 days
Over the last 30 days, 1 LBP traded between 0.000011068 and 0.000011257 USD, averaging 0.000011136 USD. The LBP/USD rate is down 0.23% since 2026-08-28.
- 30-day high
- 0.000011257
- 2026-09-03
- 30-day low
- 0.000011068
- 2026-09-23
- 30-day average
- 0.000011136
- Days with data: 30
- 30-day change
- -0.23%
- since 2026-08-28
0.000011257
0.0000110682026-08-28 → 2026-09-26
| Date | 1 LBP in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.000011128 | 0.00% |
| 2026-09-25 | 0.000011128 | -0.14% |
| 2026-09-24 | 0.000011144 | +0.69% |
| 2026-09-23 | 0.000011068 | -0.68% |
| 2026-09-22 | 0.000011143 | -0.16% |
| 2026-09-21 | 0.000011161 | +0.54% |
| 2026-09-20 | 0.000011101 | -0.23% |
| 2026-09-19 | 0.000011127 | -0.36% |
| 2026-09-18 | 0.000011167 | +0.83% |
| 2026-09-17 | 0.000011075 | -0.80% |
| 2026-09-16 | 0.000011164 | +0.45% |
| 2026-09-15 | 0.000011114 | -0.26% |
| 2026-09-14 | 0.000011143 | +0.16% |
| 2026-09-13 | 0.000011125 | +0.32% |
| 2026-09-12 | 0.000011089 | -0.25% |
| Date | 1 LBP in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.000011117 | -0.33% |
| 2026-09-10 | 0.000011154 | +0.09% |
| 2026-09-09 | 0.000011143 | +0.02% |
| 2026-09-08 | 0.000011141 | -0.05% |
| 2026-09-07 | 0.000011146 | +0.26% |
| 2026-09-06 | 0.000011117 | +0.21% |
| 2026-09-05 | 0.000011094 | -0.30% |
| 2026-09-04 | 0.000011127 | -1.16% |
| 2026-09-03 | 0.000011257 | +1.14% |
| 2026-09-02 | 0.000011131 | -0.32% |
| 2026-09-01 | 0.000011167 | +0.62% |
| 2026-08-31 | 0.000011098 | -0.17% |
| 2026-08-30 | 0.000011117 | -1.13% |
| 2026-08-29 | 0.000011244 | +0.81% |
| 2026-08-28 | 0.000011154 | — |
LBP to USD conversion table
1 LBP0.000011128 USD
5 LBP0.000055642 USD
10 LBP0.00011128 USD
25 LBP0.00027821 USD
50 LBP0.00055642 USD
100 LBP0.0011128 USD
500 LBP0.0055642 USD
1,000 LBP0.011128 USD
5,000 LBP0.055642 USD
10,000 LBP0.11128 USD
Get the LBP/USD rate in your app
One GET request returns the latest LBP → 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/LBP/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/LBP/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 LBP = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/LBP/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 LBP = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/LBP/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 LBP = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "LBP",
"to": "USD"
},
"rate": 1.1e-5,
"timestamp": 1790432040,
"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 LBPUS Dollar → Lebanese Pound89,859.392Convert LBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.