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

Bank of England Exchange Rate API: Official GBP Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

Bank of England publishes an official table of exchange rates once per business day — the daily spot rates — covering ~23 currencies against the GBP. These are the published central bank rates used for tax filings, customs valuations, audits, and compliant invoicing in United Kingdom — not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency boe-exchange-rate npm package, with history back to 2016.

GBP → USD — official Bank of England reference rate
Weekly observations, Aug '25 – Aug '26 · US dollars per 1 British pound
1.3201.3401.360Aug '25Nov '25Jan '26May '26Aug '261.3442025-08-01: 1.326 USD2025-08-08: 1.344 USD2025-08-15: 1.356 USD2025-08-22: 1.353 USD2025-08-29: 1.351 USD2025-09-05: 1.352 USD2025-09-12: 1.356 USD2025-09-19: 1.348 USD2025-09-26: 1.340 USD2025-10-03: 1.347 USD2025-10-10: 1.330 USD2025-10-17: 1.339 USD2025-10-24: 1.330 USD2025-10-31: 1.314 USD2025-11-07: 1.315 USD2025-11-14: 1.314 USD2025-11-21: 1.308 USD2025-11-28: 1.325 USD2025-12-05: 1.334 USD2025-12-12: 1.335 USD2025-12-19: 1.336 USD2025-12-24: 1.351 USD2025-12-31: 1.345 USD2026-01-02: 1.350 USD2026-01-09: 1.342 USD2026-01-16: 1.338 USD2026-01-23: 1.356 USD2026-01-30: 1.372 USD2026-02-06: 1.361 USD2026-02-13: 1.361 USD2026-02-20: 1.350 USD2026-02-27: 1.344 USD2026-03-06: 1.336 USD2026-03-13: 1.324 USD2026-03-20: 1.330 USD2026-03-27: 1.329 USD2026-04-02: 1.324 USD2026-04-10: 1.346 USD2026-04-17: 1.357 USD2026-04-24: 1.350 USD2026-05-01: 1.362 USD2026-05-08: 1.363 USD2026-05-15: 1.335 USD2026-05-22: 1.343 USD2026-05-29: 1.348 USD2026-06-05: 1.339 USD2026-06-12: 1.341 USD2026-06-19: 1.323 USD2026-06-26: 1.320 USD2026-07-03: 1.336 USD2026-07-10: 1.341 USD2026-07-17: 1.345 USD2026-07-24: 1.333 USD2026-07-31: 1.346 USD2026-08-03: 1.344 USD
Source: Bank of England published rates · chart data from the AllRatesToday API (/api/v1/central-bank/boe/history?source=GBP&target=USD).

What the Bank of England publishes

Why official rates, not market rates

A live mid-market feed answers "what is GBP/USD 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 central bank's published table, and it never changes after publication.

The Bank of England's daily spot rates are the long-running UK statistical reference for sterling, widely used in GBP reporting, transfer-pricing documentation, and audit files.

Get the latest table (REST)

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

The response is the bank's most recent published table — every currency, the GBP value, and the publication date:

{
  "bank": "boe",
  "rate_date": "2026-08-01",
  "base": "GBP",
  "rates": [ { "currency": "USD", "rate": 1.2345, "official": true }, ... ]
}

The latest table is available on every plan, including the free tier (300 requests/month, no credit card). Since the table changes once per business day, caching it locally makes even a small quota go a long way.

The npm SDK

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

// One pair at the official Bank of England rate
const pair = await getRate('GBP', 'USD', { 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

The most common compliance job: an invoice dated months ago needs the official rate for that date.

import { getRatesForDate, getHistory } from 'boe-exchange-rate';

// The official table for an invoice date — weekends/holidays return
// the most recent published date, flagged via published_on_requested_date.
const day = await getRatesForDate('2026-06-30', { apiKey: 'art_live_...' });

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

Historical dates and time series need a paid plan; the latest table stays free.

Published vs derived pairs

If the Bank of England does not print a pair directly, the API resolves it from the bank's table — an inverse, or a cross rate via GBP — 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.

FAQ

Does Bank of England have an official exchange rate API?

Bank of England publishes its official rates on its website, but not always in a developer-friendly form. AllRatesToday serves the bank's published table as clean JSON — ~23 currencies against the GBP, with history back to 2016 — via REST or the boe-exchange-rate npm package. The latest table is free.

How often do Bank of England rates update?

Once per business day. These are published reference rates, not moving market prices — the table changes when the Bank of England publishes a new one, and every API response carries the bank's own publication date so you can cite it.

Can I get the Bank of England rate for a past date, like an invoice date?

Yes. The /central-bank/boe/rates-for-date endpoint returns the official table for any date back to 2016. Weekends and holidays resolve to the most recent published table and are flagged, so your audit trail stays honest. Historical dates require a paid plan; latest rates are free.

Official Bank of England rates, as JSON

The latest table is free — 300 requests/month, no credit card.

Get your free API key

Related Articles