Bank of Sierra Leone Exchange Rate API: Official SLE (Leone) Rates as JSON

Reviewed by Madhushan, Fintech Developer — September 2026

The Bank of Sierra Leone publishes the official exchange rates that accounting, tax, and customs rules in Sierra Leone reference — published official rates, not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency bank-of-sierra-leone-exchange-rate npm package.

What 1 unit buys in SLE — official Bank of Sierra Leone reference mid rate
Sierra Leonean leones per 1 unit · table published 2026-09-25
GBP1 GBP = 30.21 SLE30.21EUR1 EUR = 26.00 SLE26.00USD1 USD = 22.82 SLE22.82AED1 AED = 6.213 SLE6.213SAR1 SAR = 6.078 SLE6.078CNY1 CNY = 3.399 SLE3.399GHS1 GHS = 1.966 SLE1.966ZAR1 ZAR = 1.399 SLE1.399
Source: Bank of Sierra Leone published table for 2026-09-25 · data from the AllRatesToday API (/api/v1/central-bank/bsl/latest).

What the BSL publishes

The leone was redenominated in 2022 (1,000 old leones to one new leone, ISO code SLE), and the BSL's daily reference rate is the official figure in the new unit. The API serves that sheet, dated, for every currency the bank prints — including the regional currencies that no market feed quotes.

Why official rates, not market rates

A live mid-market feed answers "what is USD/SLE trading at right now?" — the right tool for checkouts and dashboards. But accountants, auditors, and tax authorities ask a different question: "which rate were you required to use for this date?" That answer comes from the Bank of Sierra Leone's published rates, and it never changes after publication.

Get the latest rates (REST)

curl "https://allratestoday.com/api/v1/central-bank/bsl/latest" \
  -H "Authorization: Bearer YOUR_API_KEY"

The response is the bank's most recent published data — every rate and the publication date. The latest rates are available on every plan, including the free tier (300 requests/month, no credit card).

The npm SDK

npm install bank-of-sierra-leone-exchange-rate
import { getRate, getLatestRates } from 'bank-of-sierra-leone-exchange-rate';

// One pair at the official BSL rate
const pair = await getRate('USD', 'SLE', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

// The bank's full published table
const table = await getLatestRates({ apiKey: 'art_live_...' });
console.log(table.rate_date, table.rates.length);

Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.

Historical rates for an invoice date

import { getRatesForDate, getHistory } from 'bank-of-sierra-leone-exchange-rate';

// The official rates for an invoice date — non-publication days return
// the most recent published date, flagged via published_on_requested_date.
const day = await getRatesForDate('2026-09-15', { apiKey: 'art_live_...' });

// Time series for one pair
const series = await getHistory(
  { source: 'USD', target: 'SLE', from: '2026-09-01' },
  { apiKey: 'art_live_...' }
);

Historical dates and time series need a paid plan; the latest rates stay free.

Published vs derived pairs

If the BSL does not print a pair directly, the API resolves it from the bank's published rates — an inverse, or a cross rate via SLE — and flags it derived: true with the method used. Official and computed values are never silently mixed, which is exactly the distinction an auditor will ask about.

Reference rates from September 2026

Our archive starts on 1 September 2026, when the dollar stood at 22.80 leones; it was 22.8215 on 25 September. The bank publishes only the most recent sheets on its site and nothing older is served, so the series grows one business day at a time from here. For a past date inside the archive, one call returns the sheet published that day; weekends and holidays resolve to the last published sheet and are flagged.

FAQ

Does the Bank of Sierra Leone have an official exchange rate API?

The BSL publishes its official rates on its own site, and AllRatesToday serves the same published rates as clean JSON via REST or the bank-of-sierra-leone-exchange-rate npm package. The latest rates are free (300 requests/month); historical dates need a paid plan.

How often do Bank of Sierra Leone rates update?

Once per business day, in the Freetown afternoon, as one sheet of about 25 currencies in leones per unit. Every API response carries the sheet's own date; weekends and holidays resolve to the last published sheet.

Can I get the BSL rate for a past date, like an invoice date?

Yes, for dates from 1 September 2026 onward — the bank does not serve older sheets, so the archive starts there. The /central-bank/bsl/rates-for-date endpoint returns the sheet for any archived date; non-publication days resolve to the most recent published date and are flagged via published_on_requested_date.

Official Bank of Sierra Leone rates, as JSON

The latest rates are free — 300 requests/month, no credit card.

Get your free API key

Related Articles