Bank of England Exchange Rate API

Official Bank of England rates for 11 Sept 2026: 1 GBP = 1.353 USD, 1 GBP = 1.1649 EUR. All 23 currencies published, history back to 2016. Free JSON API for tax, audits, and compliant invoicing.

United Kingdom flagBank of England publishes official daily exchange rates — 23 currencies against the GBP — and this API serves them as JSON, with history back to 2016. The latest table is on every plan. Get your API key.

About Bank of England

The Bank of England, founded in 1694, is the United Kingdom's central bank. It publishes daily spot exchange rates against sterling in its Statistical Interactive Database each business day around 16:00 London time.

Quick start

One request for the pair you need — GBP to USD at the official Bank of England rate:

curl "https://allratestoday.com/api/v1/central-bank/boe/latest?source=GBP&target=USD" \
  -H "Authorization: Bearer art_live_your_key"

Or the bank's full published table:

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

On paid plans, any historical date or a time series:

curl "https://allratestoday.com/api/v1/central-bank/boe/history?source=GBP&target=USD&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-09-11)

The most recent table as published by Bank of England — exactly what the /latest endpoint returns right now. Values are GBP per 1 unit of each currency:

Download this table: Excel (.xlsx) CSV

Download history:
Choose currencies: USD
Excel (.xlsx) CSV

One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.

BaseQuoteTypeRate
GBP AUD reference 1.8862
GBP CAD reference 1.877
GBP CHF reference 1.1031
GBP CNY reference 9.0749
GBP DKK reference 8.7078
GBP EUR reference 1.1649
GBP HKD reference 10.6106
GBP ILS reference 4.102
GBP INR reference 129.2811
GBP JPY reference 207.6508
GBP KRW reference 1813.3318
GBP MYR reference 5.5072
GBP NOK reference 12.5671
GBP NZD reference 2.3259
GBP PLN reference 5.0371
GBP SAR reference 5.0811
GBP SEK reference 13.1022
GBP SGD reference 1.7138
GBP THB reference 44.6609
GBP TRY reference 65.7588
GBP TWD reference 42.7857
GBP USD reference 1.353
GBP ZAR reference 21.8243

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — boe-exchange-rate:

npm install boe-exchange-rate
import { getRate } from 'boe-exchange-rate';

const pair = await getRate('GBP', 'USD', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

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

Full reference — installation, all four functions, response shapes, error codes: boe-exchange-rate documentation.

Why use the official Bank of England rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in United Kingdom and beyond typically require the official rate published by Bank of England for a given date — a fixed, citable number that never changes after publication. This API serves those published tables with the bank's own rate_date on every response; weekends and holidays return the most recent published date, which is the rate compliance rules require you to apply.

Pairs the bank doesn't print directly are resolved from its table (inverse or cross via GBP) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.

Endpoints

Full parameter reference in the API documentation. Every request counts toward your plan's monthly quota — rates change once per business day, so caching a published table locally makes a small quota go far.

Frequently asked questions

Can I get Bank of England exchange rates via an API?

Yes — this API serves the bank's official daily GBP rates as JSON, and the latest table is on every plan, free included.

When do new rates appear here?

Once per business day, per Bank of England's own schedule; ingestion follows within the hour (latest table: 2026-09-11).

Are these the official rates?

Yes — ingested from Bank of England's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.

Bank of England rates, one API key

Latest table on every plan. History back to 2016 on paid plans. No credit card to start.

Get Free API Key Read the Docs