Convert CAD to LBP
Canadian Dollar → Lebanese Pound
1 CAD = 63,266.626 LBP(1 LBP = 0.0000158061 CAD)
Currency converter
1 CAD =
63,266.626 LBP
CAD to LBP: last 30 days
Over the last 30 days, 1 CAD traded between 63,266.626 and 65,319.819 LBP, averaging 64,465.058 LBP. The CAD/LBP rate is down 1.44% since 2026-08-29.
- 30-day high
- 65,319.819
- 2026-09-05
- 30-day low
- 63,266.626
- 2026-09-26
- 30-day average
- 64,465.058
- Days with data: 30
- 30-day change
- -1.44%
- since 2026-08-29
65,319.819
63,266.6262026-08-29 → 2026-09-27
| Date | 1 CAD in LBP | Daily change |
|---|---|---|
| 2026-09-27 | 63,266.626 | 0.00% |
| 2026-09-26 | 63,266.626 | -0.43% |
| 2026-09-25 | 63,537.338 | -0.04% |
| 2026-09-24 | 63,562.579 | -0.89% |
| 2026-09-23 | 64,131.133 | +0.36% |
| 2026-09-22 | 63,901.131 | -0.12% |
| 2026-09-21 | 63,978.669 | -0.49% |
| 2026-09-20 | 64,296.081 | +0.23% |
| 2026-09-19 | 64,148.515 | +0.36% |
| 2026-09-18 | 63,918.607 | -0.93% |
| 2026-09-17 | 64,519.694 | +0.40% |
| 2026-09-16 | 64,261.608 | -0.58% |
| 2026-09-15 | 64,636.841 | +0.02% |
| 2026-09-14 | 64,623.93 | -0.37% |
| 2026-09-13 | 64,864.337 | -0.32% |
| Date | 1 CAD in LBP | Daily change |
|---|---|---|
| 2026-09-12 | 65,074.168 | +0.25% |
| 2026-09-11 | 64,912.688 | +0.03% |
| 2026-09-10 | 64,892.78 | -0.44% |
| 2026-09-09 | 65,179.626 | +0.25% |
| 2026-09-08 | 65,019.79 | +0.15% |
| 2026-09-07 | 64,919.785 | -0.41% |
| 2026-09-06 | 65,184.099 | -0.21% |
| 2026-09-05 | 65,319.819 | +0.30% |
| 2026-09-04 | 65,122.714 | +1.11% |
| 2026-09-03 | 64,407.378 | -0.17% |
| 2026-09-02 | 64,516.486 | +0.06% |
| 2026-09-01 | 64,479.286 | -0.63% |
| 2026-08-31 | 64,889.852 | -0.06% |
| 2026-08-30 | 64,926.528 | +1.14% |
| 2026-08-29 | 64,193.025 | — |
CAD to LBP conversion table
1 CAD63,266.626 LBP
5 CAD316,333.13 LBP
10 CAD632,666.26 LBP
25 CAD1,581,665.6 LBP
50 CAD3,163,331.3 LBP
100 CAD6,326,662.6 LBP
500 CAD31,633,313 LBP
1,000 CAD63,266,626 LBP
5,000 CAD316,333,129 LBP
10,000 CAD632,666,258 LBP
Get the CAD/LBP rate in your app
One GET request returns the latest CAD → 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/CAD/LBP"fetch('https://rate-api.com/api/v1/pair/CAD/LBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} LBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/LBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} LBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/LBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CAD = {$data['rate']} LBP\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "LBP"
},
"rate": 63266.6258,
"timestamp": 1790470815,
"date": "2026-09-27"
}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 CADLebanese Pound → Canadian Dollar0.000015806Convert CAD to other currencies
Convert other currencies to LBP
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.