Convert EUR to LSL
Euro → Lesotho Loti
1 EUR = 18.5798 LSL(1 LSL = 0.0538219 EUR)
Currency converter
1 EUR =
18.5798 LSL
EUR to LSL: last 30 days
Over the last 30 days, 1 EUR traded between 18.5483 and 18.8215 LSL, averaging 18.6662 LSL. The EUR/LSL rate is down 0.22% since 2026-08-28.
- 30-day high
- 18.8215
- 2026-08-30
- 30-day low
- 18.5483
- 2026-09-05
- 30-day average
- 18.6662
- Days with data: 30
- 30-day change
- -0.22%
- since 2026-08-28
18.8215
18.54832026-08-28 → 2026-09-26
| Date | 1 EUR in LSL | Daily change |
|---|---|---|
| 2026-09-26 | 18.5798 | 0.00% |
| 2026-09-25 | 18.5798 | -0.56% |
| 2026-09-24 | 18.6836 | +0.16% |
| 2026-09-23 | 18.6537 | +0.14% |
| 2026-09-22 | 18.6281 | -0.08% |
| 2026-09-21 | 18.6431 | -0.05% |
| 2026-09-20 | 18.6519 | +0.14% |
| 2026-09-19 | 18.6266 | +0.08% |
| 2026-09-18 | 18.6111 | -0.81% |
| 2026-09-17 | 18.7635 | +0.23% |
| 2026-09-16 | 18.7212 | -0.31% |
| 2026-09-15 | 18.7804 | +0.40% |
| 2026-09-14 | 18.7055 | +0.09% |
| 2026-09-13 | 18.6891 | -0.09% |
| 2026-09-12 | 18.7061 | -0.50% |
| Date | 1 EUR in LSL | Daily change |
|---|---|---|
| 2026-09-11 | 18.8009 | +0.90% |
| 2026-09-10 | 18.6327 | -0.06% |
| 2026-09-09 | 18.6437 | +0.38% |
| 2026-09-08 | 18.5741 | -0.02% |
| 2026-09-07 | 18.5774 | +0.12% |
| 2026-09-06 | 18.5559 | +0.04% |
| 2026-09-05 | 18.5483 | -0.17% |
| 2026-09-04 | 18.579 | -0.30% |
| 2026-09-03 | 18.6353 | -0.49% |
| 2026-09-02 | 18.7277 | +0.27% |
| 2026-09-01 | 18.6765 | -0.41% |
| 2026-08-31 | 18.7537 | -0.36% |
| 2026-08-30 | 18.8215 | +0.03% |
| 2026-08-29 | 18.8158 | +1.05% |
| 2026-08-28 | 18.6208 | — |
EUR to LSL conversion table
1 EUR18.5798 LSL
5 EUR92.899 LSL
10 EUR185.798 LSL
25 EUR464.495 LSL
50 EUR928.99 LSL
100 EUR1,857.98 LSL
500 EUR9,289.9 LSL
1,000 EUR18,579.8 LSL
5,000 EUR92,899 LSL
10,000 EUR185,798 LSL
Get the EUR/LSL rate in your app
One GET request returns the latest EUR → 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/EUR/LSL"fetch('https://rate-api.com/api/v1/pair/EUR/LSL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} LSL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/LSL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} LSL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/LSL');
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']} LSL\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "LSL"
},
"rate": 18.5798,
"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
LSL to EURLesotho Loti → Euro0.053822Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.