Convert LBP to CAD
Lebanese Pound → Canadian Dollar
1 LBP = 0.0000157388 CAD(1 CAD = 63,537.338 LBP)
Currency converter
1 LBP =
0.000015739 CAD
LBP to CAD: last 30 days
Over the last 30 days, 1 LBP traded between 0.000015309 and 0.000015739 CAD, averaging 0.000015499 CAD. The LBP/CAD rate is up 1.85% since 2026-08-28.
- 30-day high
- 0.000015739
- 2026-09-25
- 30-day low
- 0.000015309
- 2026-09-05
- 30-day average
- 0.000015499
- Days with data: 30
- 30-day change
- +1.85%
- since 2026-08-28
0.000015739
0.0000153092026-08-28 → 2026-09-26
| Date | 1 LBP in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.000015739 | 0.00% |
| 2026-09-25 | 0.000015739 | +0.04% |
| 2026-09-24 | 0.000015733 | +0.89% |
| 2026-09-23 | 0.000015593 | -0.36% |
| 2026-09-22 | 0.000015649 | +0.12% |
| 2026-09-21 | 0.00001563 | +0.50% |
| 2026-09-20 | 0.000015553 | -0.23% |
| 2026-09-19 | 0.000015589 | -0.36% |
| 2026-09-18 | 0.000015645 | +0.94% |
| 2026-09-17 | 0.000015499 | -0.40% |
| 2026-09-16 | 0.000015561 | +0.58% |
| 2026-09-15 | 0.000015471 | -0.02% |
| 2026-09-14 | 0.000015474 | +0.37% |
| 2026-09-13 | 0.000015417 | +0.32% |
| 2026-09-12 | 0.000015367 | -0.25% |
| Date | 1 LBP in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.000015405 | -0.03% |
| 2026-09-10 | 0.00001541 | +0.44% |
| 2026-09-09 | 0.000015342 | -0.25% |
| 2026-09-08 | 0.00001538 | -0.15% |
| 2026-09-07 | 0.000015404 | +0.41% |
| 2026-09-06 | 0.000015341 | +0.21% |
| 2026-09-05 | 0.000015309 | -0.30% |
| 2026-09-04 | 0.000015356 | -1.10% |
| 2026-09-03 | 0.000015526 | +0.17% |
| 2026-09-02 | 0.0000155 | -0.06% |
| 2026-09-01 | 0.000015509 | +0.64% |
| 2026-08-31 | 0.000015411 | +0.06% |
| 2026-08-30 | 0.000015402 | -1.13% |
| 2026-08-29 | 0.000015578 | +0.81% |
| 2026-08-28 | 0.000015452 | — |
LBP to CAD conversion table
1 LBP0.000015739 CAD
5 LBP0.000078694 CAD
10 LBP0.00015739 CAD
25 LBP0.00039347 CAD
50 LBP0.00078694 CAD
100 LBP0.0015739 CAD
500 LBP0.0078694 CAD
1,000 LBP0.015739 CAD
5,000 LBP0.078694 CAD
10,000 LBP0.15739 CAD
Get the LBP/CAD rate in your app
One GET request returns the latest LBP → CAD 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/CAD?precision=6"fetch('https://rate-api.com/api/v1/pair/LBP/CAD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 LBP = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/LBP/CAD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 LBP = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/LBP/CAD?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']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "LBP",
"to": "CAD"
},
"rate": 1.6e-5,
"timestamp": 1790435065,
"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
CAD to LBPCanadian Dollar → Lebanese Pound63,537.338Convert LBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.