Central Bank of Belize Exchange Rate API

Official Central Bank of Belize rates for 7 Sept 2026: 1 USD = 2 BZD, 1 EUR = 2.2905 BZD. All 4 currencies published, history back to 2010. Free JSON API for tax, audits, and compliant invoicing.

Belize flagCentral Bank of Belize official daily exchange rates as JSON: 4 currencies against the BZD, history back to 2010. Latest table on every plan. Get your API key.

About Central Bank of Belize

The Central Bank of Belize publishes daily buying and selling rates for the US dollar, pound sterling, euro and Canadian dollar in Belize dollars per unit. The Belize dollar is pegged at two to the US dollar — buy 2.00, sell 2.0175, unchanged since the archive begins in 2010 — so the sterling, euro and Canadian legs carry all the movement, and they are the reference for Belizean customs, tax and bank conversions.

Quick start

One request for the pair you need — USD to BZD at the official Central Bank of Belize rate:

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

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/cbbz/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/cbbz/history?source=USD&target=BZD&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-09-07)

Below is the current table from Central Bank of Belize, unmodified — what a call to /latest returns right now, with values BZD 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
CAD BZD buy 1.4257
CAD BZD sell 1.4691
EUR BZD buy 2.2905
EUR BZD sell 2.3603
GBP BZD buy 2.667
GBP BZD sell 2.7482
USD BZD buy 2
USD BZD sell 2.0175

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — central-bank-of-belize-exchange-rate:

npm install central-bank-of-belize-exchange-rate
import { getRate } from 'central-bank-of-belize-exchange-rate';

const pair = await getRate('USD', 'BZD', { 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: central-bank-of-belize-exchange-rate documentation.

Why use the official Central Bank of Belize rate?

When an auditor or tax office in Belize asks which rate you used, "the BZD mid-market rate at 14:32" is not an answer — the official rate published by Central Bank of Belize for that date is. This API returns exactly those published figures, stamped with the bank's own rate_date; on weekends and holidays the most recent published table is returned, as compliance rules expect.

If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via BZD) and marks it "derived": true — published and computed values are never silently mixed.

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 Central Bank of Belize exchange rates?

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

How often does Central Bank of Belize update its rates?

New tables land once per business day — the API picks each one up shortly after Central Bank of Belize publishes it (latest: 2026-09-07).

Is this the official published table?

Yes — the rows are Central Bank of Belize's published figures, untouched, with the original publication date attached. Pairs the bank didn't print are computed and flagged derived.

Central Bank of Belize rates, one API key

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

Get Free API Key Read the Docs