Convert GBP to SLE
British Pound → Sierra Leonean Leone
1 GBP = 30.387671 SLE(1 SLE = 0.0329081 GBP)
Currency converter
1 GBP =
30.3877 SLE
GBP to SLE: last 30 days
Over the last 30 days, 1 GBP traded between 30.2861 and 33.2512 SLE, averaging 31.1968 SLE. The GBP/SLE rate is down 2.35% since 2026-08-28.
- 30-day high
- 33.2512
- 2026-09-04
- 30-day low
- 30.2861
- 2026-09-24
- 30-day average
- 31.1968
- Days with data: 30
- 30-day change
- -2.35%
- since 2026-08-28
33.2512
30.28612026-08-28 → 2026-09-26
| Date | 1 GBP in SLE | Daily change |
|---|---|---|
| 2026-09-26 | 30.3877 | 0.00% |
| 2026-09-25 | 30.3877 | +0.34% |
| 2026-09-24 | 30.2861 | -0.54% |
| 2026-09-23 | 30.4494 | -7.51% |
| 2026-09-22 | 32.9225 | +7.17% |
| 2026-09-21 | 30.7211 | +0.38% |
| 2026-09-20 | 30.6051 | -0.00% |
| 2026-09-19 | 30.6051 | -6.96% |
| 2026-09-18 | 32.8937 | +7.20% |
| 2026-09-17 | 30.6858 | -7.43% |
| 2026-09-16 | 33.1499 | +7.22% |
| 2026-09-15 | 30.9181 | -0.12% |
| 2026-09-14 | 30.9564 | -0.10% |
| 2026-09-13 | 30.9874 | 0.00% |
| 2026-09-12 | 30.9874 | -0.01% |
| Date | 1 GBP in SLE | Daily change |
|---|---|---|
| 2026-09-11 | 30.9894 | +0.00% |
| 2026-09-10 | 30.9885 | -0.37% |
| 2026-09-09 | 31.1041 | +0.19% |
| 2026-09-08 | 31.0464 | +0.11% |
| 2026-09-07 | 31.0123 | -0.00% |
| 2026-09-06 | 31.0134 | -1.78% |
| 2026-09-05 | 31.5752 | -5.04% |
| 2026-09-04 | 33.2512 | +7.46% |
| 2026-09-03 | 30.9419 | +0.14% |
| 2026-09-02 | 30.8996 | -0.37% |
| 2026-09-01 | 31.0132 | +0.05% |
| 2026-08-31 | 30.9977 | -0.49% |
| 2026-08-30 | 31.1496 | -2.23% |
| 2026-08-29 | 31.8615 | +2.39% |
| 2026-08-28 | 31.1176 | — |
GBP to SLE conversion table
1 GBP30.3877 SLE
5 GBP151.9384 SLE
10 GBP303.8767 SLE
25 GBP759.6918 SLE
50 GBP1,519.3836 SLE
100 GBP3,038.7671 SLE
500 GBP15,193.836 SLE
1,000 GBP30,387.671 SLE
5,000 GBP151,938.36 SLE
10,000 GBP303,876.71 SLE
Get the GBP/SLE rate in your app
One GET request returns the latest GBP → SLE 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/GBP/SLE"fetch('https://rate-api.com/api/v1/pair/GBP/SLE', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} SLE`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/SLE",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} SLE")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/SLE');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} SLE\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "SLE"
},
"rate": 30.3877,
"timestamp": 1790429350,
"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
SLE to GBPSierra Leonean Leone → British Pound0.032908Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.