Convert LBP to AUD
Lebanese Pound → Australian Dollar
1 LBP = 0.0000158295 AUD(1 AUD = 63,173.036 LBP)
Currency converter
1 LBP =
0.00001583 AUD
LBP to AUD: last 30 days
Over the last 30 days, 1 LBP traded between 0.0000154 and 0.00001586 AUD, averaging 0.000015579 AUD. The LBP/AUD rate is up 2.11% since 2026-08-28.
- 30-day high
- 0.00001586
- 2026-09-24
- 30-day low
- 0.0000154
- 2026-09-05
- 30-day average
- 0.000015579
- Days with data: 30
- 30-day change
- +2.11%
- since 2026-08-28
0.00001586
0.00001542026-08-28 → 2026-09-26
| Date | 1 LBP in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.00001583 | 0.00% |
| 2026-09-25 | 0.00001583 | -0.19% |
| 2026-09-24 | 0.00001586 | +1.28% |
| 2026-09-23 | 0.00001566 | -0.07% |
| 2026-09-22 | 0.000015671 | +0.22% |
| 2026-09-21 | 0.000015637 | +0.29% |
| 2026-09-20 | 0.000015592 | -0.23% |
| 2026-09-19 | 0.000015628 | -0.36% |
| 2026-09-18 | 0.000015684 | +0.75% |
| 2026-09-17 | 0.000015568 | -0.54% |
| 2026-09-16 | 0.000015653 | +0.35% |
| 2026-09-15 | 0.000015598 | -0.20% |
| 2026-09-14 | 0.000015629 | +0.77% |
| 2026-09-13 | 0.00001551 | +0.32% |
| 2026-09-12 | 0.00001546 | -0.25% |
| Date | 1 LBP in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.000015499 | -0.16% |
| 2026-09-10 | 0.000015524 | +0.65% |
| 2026-09-09 | 0.000015424 | -0.12% |
| 2026-09-08 | 0.000015442 | -0.05% |
| 2026-09-07 | 0.000015449 | +0.11% |
| 2026-09-06 | 0.000015432 | +0.21% |
| 2026-09-05 | 0.0000154 | -0.30% |
| 2026-09-04 | 0.000015447 | -1.30% |
| 2026-09-03 | 0.00001565 | +0.49% |
| 2026-09-02 | 0.000015573 | -0.41% |
| 2026-09-01 | 0.000015637 | +0.91% |
| 2026-08-31 | 0.000015496 | +0.29% |
| 2026-08-30 | 0.000015452 | -1.13% |
| 2026-08-29 | 0.000015629 | +0.81% |
| 2026-08-28 | 0.000015503 | — |
LBP to AUD conversion table
1 LBP0.00001583 AUD
5 LBP0.000079148 AUD
10 LBP0.0001583 AUD
25 LBP0.00039574 AUD
50 LBP0.00079148 AUD
100 LBP0.001583 AUD
500 LBP0.0079148 AUD
1,000 LBP0.01583 AUD
5,000 LBP0.079148 AUD
10,000 LBP0.1583 AUD
Get the LBP/AUD rate in your app
One GET request returns the latest LBP → AUD 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/AUD?precision=6"fetch('https://rate-api.com/api/v1/pair/LBP/AUD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 LBP = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/LBP/AUD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 LBP = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/LBP/AUD?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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "LBP",
"to": "AUD"
},
"rate": 1.6e-5,
"timestamp": 1790432039,
"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
AUD to LBPAustralian Dollar → Lebanese Pound63,173.036Convert LBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.