Sierra Leonean Leone (old) (SLL) Le
Sierra Leonean Leone (old) exchange rates against major world currencies, checked hourly and updated as sources publish.
1 SLL = 0.000043611 USD
1 SLL in other currencies
SLL to USDUS Dollar0.000043611SLL to EUREuro0.000038245SLL to GBPBritish Pound0.000032908SLL to JPYJapanese Yen0.0068727SLL to CNYChinese Yuan0.00029277SLL to CADCanadian Dollar0.000061678SLL to AUDAustralian Dollar0.000062034SLL to CHFSwiss Franc0.000036123SLL to INRIndian Rupee0.0041787SLL to RUBRussian Ruble0.0037075
Convert to SLL
USD to SLLUS Dollar22,929.994EUR to SLLEuro26,147.072GBP to SLLBritish Pound30,387.671JPY to SLLJapanese Yen145.504CNY to SLLChinese Yuan3,415.6408CAD to SLLCanadian Dollar16,213.227AUD to SLLAustralian Dollar16,120.266CHF to SLLSwiss Franc27,683.506INR to SLLIndian Rupee239.3095RUB to SLLRussian Ruble269.7232
Get SLL rates in your app
One GET request returns every rate against SLL as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=SLL"fetch('https://rate-api.com/api/v1/latest?base=SLL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SLL = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=SLL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SLL = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=SLL');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SLL = {$data['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.