Convert LBP to EUR
Lebanese Pound → Euro
1 LBP = 0.00000975927 EUR(1 EUR = 102,466.67 LBP)
Currency converter
1 LBP =
0.0000097593 EUR
LBP to EUR: last 30 days
Over the last 30 days, 1 LBP traded between 0.0000095455 and 0.000009804 EUR, averaging 0.0000096428 EUR. The LBP/EUR rate is up 1.87% since 2026-08-28.
- 30-day high
- 0.000009804
- 2026-09-24
- 30-day low
- 0.0000095455
- 2026-09-05
- 30-day average
- 0.0000096428
- Days with data: 30
- 30-day change
- +1.87%
- since 2026-08-28
0.000009804
0.00000954552026-08-28 → 2026-09-26
| Date | 1 LBP in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.0000097593 | 0.00% |
| 2026-09-25 | 0.0000097593 | -0.46% |
| 2026-09-24 | 0.000009804 | +1.08% |
| 2026-09-23 | 0.000009699 | -0.22% |
| 2026-09-22 | 0.0000097208 | +0.07% |
| 2026-09-21 | 0.0000097139 | +0.28% |
| 2026-09-20 | 0.0000096871 | -0.23% |
| 2026-09-19 | 0.0000097094 | -0.36% |
| 2026-09-18 | 0.0000097443 | +1.02% |
| 2026-09-17 | 0.0000096461 | -0.32% |
| 2026-09-16 | 0.0000096767 | +0.46% |
| 2026-09-15 | 0.000009632 | -0.15% |
| 2026-09-14 | 0.0000096467 | +0.52% |
| 2026-09-13 | 0.0000095969 | +0.32% |
| 2026-09-12 | 0.000009566 | -0.25% |
| Date | 1 LBP in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.0000095898 | -0.13% |
| 2026-09-10 | 0.000009602 | +0.40% |
| 2026-09-09 | 0.0000095635 | -0.30% |
| 2026-09-08 | 0.0000095926 | +0.02% |
| 2026-09-07 | 0.0000095904 | +0.26% |
| 2026-09-06 | 0.0000095653 | +0.21% |
| 2026-09-05 | 0.0000095455 | -0.30% |
| 2026-09-04 | 0.0000095743 | -1.22% |
| 2026-09-03 | 0.0000096921 | +0.81% |
| 2026-09-02 | 0.000009614 | -0.22% |
| 2026-09-01 | 0.0000096351 | +0.67% |
| 2026-08-31 | 0.0000095706 | +0.23% |
| 2026-08-30 | 0.0000095486 | -1.13% |
| 2026-08-29 | 0.0000096577 | +0.81% |
| 2026-08-28 | 0.0000095798 | — |
LBP to EUR conversion table
1 LBP0.0000097593 EUR
5 LBP0.000048796 EUR
10 LBP0.000097593 EUR
25 LBP0.00024398 EUR
50 LBP0.00048796 EUR
100 LBP0.00097593 EUR
500 LBP0.0048796 EUR
1,000 LBP0.0097593 EUR
5,000 LBP0.048796 EUR
10,000 LBP0.097593 EUR
Get the LBP/EUR rate in your app
One GET request returns the latest LBP → EUR 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/EUR?precision=6"fetch('https://rate-api.com/api/v1/pair/LBP/EUR?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 LBP = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/LBP/EUR?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 LBP = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/LBP/EUR?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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "LBP",
"to": "EUR"
},
"rate": 1.0e-5,
"timestamp": 1790432093,
"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
EUR to LBPEuro → Lebanese Pound102,466.67Convert LBP to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.