Lebanese Pound (LBP) ل.ل
Lebanese Pound exchange rates against major world currencies, checked hourly and updated as sources publish.
1 LBP = 0.0000111285 USD
1 LBP in other currencies
LBP to USDUS Dollar0.000011128LBP to EUREuro0.0000097593LBP to GBPBritish Pound0.0000083974LBP to JPYJapanese Yen0.0017537LBP to CNYChinese Yuan0.000074708LBP to CADCanadian Dollar0.000015739LBP to AUDAustralian Dollar0.00001583LBP to CHFSwiss Franc0.0000092176LBP to INRIndian Rupee0.0010663LBP to RUBRussian Ruble0.00094607
Convert to LBP
USD to LBPUS Dollar89,859.392EUR to LBPEuro102,466.67GBP to LBPBritish Pound119,084.97JPY to LBPJapanese Yen570.2096CNY to LBPChinese Yuan13,385.412CAD to LBPCanadian Dollar63,537.338AUD to LBPAustralian Dollar63,173.036CHF to LBPSwiss Franc108,487.73INR to LBPIndian Rupee937.8198RUB to LBPRussian Ruble1,057.0068
Get LBP rates in your app
One GET request returns every rate against LBP as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=LBP"fetch('https://rate-api.com/api/v1/latest?base=LBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 LBP = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=LBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 LBP = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=LBP');
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['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.