Convert AUD to LSL
Australian Dollar → Lesotho Loti
1 AUD = 11.454871 LSL(1 LSL = 0.0872991 AUD)
Currency converter
1 AUD =
11.4549 LSL
AUD to LSL: last 30 days
Over the last 30 days, 1 AUD traded between 11.4549 and 11.6331 LSL, averaging 11.5537 LSL. The AUD/LSL rate is down 0.45% since 2026-08-28.
- 30-day high
- 11.6331
- 2026-09-11
- 30-day low
- 11.4549
- 2026-09-25
- 30-day average
- 11.5537
- Days with data: 30
- 30-day change
- -0.45%
- since 2026-08-28
11.6331
11.45492026-08-28 → 2026-09-26
| Date | 1 AUD in LSL | Daily change |
|---|---|---|
| 2026-09-26 | 11.4549 | 0.00% |
| 2026-09-25 | 11.4549 | -0.82% |
| 2026-09-24 | 11.5495 | -0.03% |
| 2026-09-23 | 11.5531 | -0.01% |
| 2026-09-22 | 11.5547 | -0.23% |
| 2026-09-21 | 11.5814 | -0.06% |
| 2026-09-20 | 11.5882 | +0.14% |
| 2026-09-19 | 11.5725 | +0.08% |
| 2026-09-18 | 11.5629 | -0.55% |
| 2026-09-17 | 11.6262 | +0.46% |
| 2026-09-16 | 11.5735 | -0.21% |
| 2026-09-15 | 11.5973 | +0.45% |
| 2026-09-14 | 11.5456 | -0.16% |
| 2026-09-13 | 11.5639 | -0.09% |
| 2026-09-12 | 11.5744 | -0.50% |
| Date | 1 AUD in LSL | Daily change |
|---|---|---|
| 2026-09-11 | 11.6331 | +0.94% |
| 2026-09-10 | 11.525 | -0.30% |
| 2026-09-09 | 11.5602 | +0.19% |
| 2026-09-08 | 11.538 | +0.05% |
| 2026-09-07 | 11.5322 | +0.27% |
| 2026-09-06 | 11.5014 | +0.04% |
| 2026-09-05 | 11.4967 | -0.17% |
| 2026-09-04 | 11.5157 | -0.22% |
| 2026-09-03 | 11.541 | -0.18% |
| 2026-09-02 | 11.5612 | +0.47% |
| 2026-09-01 | 11.5077 | -0.65% |
| 2026-08-31 | 11.5825 | -0.41% |
| 2026-08-30 | 11.6308 | +0.03% |
| 2026-08-29 | 11.6272 | +1.05% |
| 2026-08-28 | 11.5067 | — |
AUD to LSL conversion table
1 AUD11.4549 LSL
5 AUD57.2744 LSL
10 AUD114.5487 LSL
25 AUD286.3718 LSL
50 AUD572.7435 LSL
100 AUD1,145.4871 LSL
500 AUD5,727.4353 LSL
1,000 AUD11,454.871 LSL
5,000 AUD57,274.353 LSL
10,000 AUD114,548.71 LSL
Get the AUD/LSL rate in your app
One GET request returns the latest AUD → LSL 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/AUD/LSL"fetch('https://rate-api.com/api/v1/pair/AUD/LSL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} LSL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/LSL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} LSL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/LSL');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} LSL\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "LSL"
},
"rate": 11.4549,
"timestamp": 1790437897,
"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
LSL to AUDLesotho Loti → Australian Dollar0.087299Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.