Convert EUR to LBP
Euro → Lebanese Pound
1 EUR = 102,466.67 LBP(1 LBP = 0.00000975927 EUR)
Currency converter
1 EUR =
102,466.67 LBP
EUR to LBP: last 30 days
Over the last 30 days, 1 EUR traded between 101,998.87 and 104,761.93 LBP, averaging 103,710.38 LBP. The EUR/LBP rate is down 1.84% since 2026-08-28.
- 30-day high
- 104,761.93
- 2026-09-05
- 30-day low
- 101,998.87
- 2026-09-24
- 30-day average
- 103,710.38
- Days with data: 30
- 30-day change
- -1.84%
- since 2026-08-28
104,761.93
101,998.872026-08-28 → 2026-09-26
| Date | 1 EUR in LBP | Daily change |
|---|---|---|
| 2026-09-26 | 102,466.67 | 0.00% |
| 2026-09-25 | 102,466.67 | +0.46% |
| 2026-09-24 | 101,998.87 | -1.07% |
| 2026-09-23 | 103,103.62 | +0.22% |
| 2026-09-22 | 102,872.35 | -0.07% |
| 2026-09-21 | 102,945.73 | -0.28% |
| 2026-09-20 | 103,230.36 | +0.23% |
| 2026-09-19 | 102,993.43 | +0.36% |
| 2026-09-18 | 102,624.3 | -1.01% |
| 2026-09-17 | 103,668.55 | +0.32% |
| 2026-09-16 | 103,341.4 | -0.46% |
| 2026-09-15 | 103,821.1 | +0.15% |
| 2026-09-14 | 103,661.94 | -0.52% |
| 2026-09-13 | 104,199.8 | -0.32% |
| 2026-09-12 | 104,536.88 | +0.25% |
| Date | 1 EUR in LBP | Daily change |
|---|---|---|
| 2026-09-11 | 104,277.47 | +0.13% |
| 2026-09-10 | 104,144.44 | -0.40% |
| 2026-09-09 | 104,564.46 | +0.30% |
| 2026-09-08 | 104,247.03 | -0.02% |
| 2026-09-07 | 104,271.24 | -0.26% |
| 2026-09-06 | 104,544.25 | -0.21% |
| 2026-09-05 | 104,761.93 | +0.30% |
| 2026-09-04 | 104,445.8 | +1.23% |
| 2026-09-03 | 103,176.29 | -0.81% |
| 2026-09-02 | 104,015.48 | +0.22% |
| 2026-09-01 | 103,787.43 | -0.67% |
| 2026-08-31 | 104,486.53 | -0.23% |
| 2026-08-30 | 104,727.28 | +1.14% |
| 2026-08-29 | 103,544.13 | -0.81% |
| 2026-08-28 | 104,385.92 | — |
EUR to LBP conversion table
1 EUR102,466.67 LBP
5 EUR512,333.33 LBP
10 EUR1,024,666.7 LBP
25 EUR2,561,666.6 LBP
50 EUR5,123,333.3 LBP
100 EUR10,246,667 LBP
500 EUR51,233,333 LBP
1,000 EUR102,466,665 LBP
5,000 EUR512,333,326 LBP
10,000 EUR1,024,666,652 LBP
Get the EUR/LBP rate in your app
One GET request returns the latest EUR → 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/EUR/LBP"fetch('https://rate-api.com/api/v1/pair/EUR/LBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} LBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/LBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} LBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/LBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} LBP\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "LBP"
},
"rate": 102466.6652,
"timestamp": 1790429406,
"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 EURLebanese Pound → Euro0.0000097593Convert EUR to other currencies
Convert other currencies to LBP
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.