Home Documentation Central Bank Rates Tax Authority Rates Playground Pricing API Status Blog About FAQ Contact Us

Bank of England Exchange Rate API

Official Bank of England (United Kingdom) daily exchange rates as JSON: 23 currencies, history back to 2016. The published GBP rates required for tax, audits, and compliant invoicing.

United Kingdom flagBank of England official daily exchange rates as JSON: 23 currencies against the GBP, history back to 2016. Latest table 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-08-10)

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

BaseQuoteTypeRate
GBP AUD reference 1.9144
GBP CAD reference 1.8852
GBP CHF reference 1.0935
GBP CNY reference 9.1211
GBP DKK reference 8.7497
GBP EUR reference 1.1704
GBP HKD reference 10.6077
GBP ILS reference 4.0539
GBP INR reference 128.8571
GBP JPY reference 214.8881
GBP KRW reference 1916.8351
GBP MYR reference 5.5306
GBP NOK reference 12.8316
GBP NZD reference 2.2963
GBP PLN reference 5.0338
GBP SAR reference 5.0768
GBP SEK reference 12.8301
GBP SGD reference 1.7306
GBP THB reference 44.6447
GBP TRY reference 64.5079
GBP TWD reference 43.6347
GBP USD reference 1.3521
GBP ZAR reference 21.8624

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.

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

Is there an API for Bank of England exchange rates?

Yes — this one. Official daily GBP rates as clean JSON, latest table on every plan including free.

How often are the rates updated?

Bank of England publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-08-10).

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