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.
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 daily 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-07-30)
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:
| Base | Quote | Type | Rate |
|---|---|---|---|
GBP | AUD | reference | 1.9168 |
GBP | CAD | reference | 1.882 |
GBP | CHF | reference | 1.0843 |
GBP | CNY | reference | 9.0615 |
GBP | DKK | reference | 8.724 |
GBP | EUR | reference | 1.1671 |
GBP | HKD | reference | 10.5301 |
GBP | ILS | reference | 4.1148 |
GBP | INR | reference | 128.4571 |
GBP | JPY | reference | 213.8401 |
GBP | KRW | reference | 1919.4394 |
GBP | MYR | reference | 5.491 |
GBP | NOK | reference | 12.8413 |
GBP | NZD | reference | 2.2906 |
GBP | PLN | reference | 5.0259 |
GBP | SAR | reference | 5.041 |
GBP | SEK | reference | 12.8409 |
GBP | SGD | reference | 1.7231 |
GBP | THB | reference | 44.8596 |
GBP | TRY | reference | 63.6551 |
GBP | TWD | reference | 43.5923 |
GBP | USD | reference | 1.3425 |
GBP | ZAR | reference | 22.1866 |
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); 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
GET /api/v1/central-bank/boe/latest— latest table or single pair (all plans)GET /api/v1/central-bank/boe/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/boe/history— daily time series, up to 5,000 rows (paid plans)
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 day's 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-07-30).
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