Banco Central de Honduras Exchange Rate API: Official HNL Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

The Banco Central de Honduras publishes the official exchange rates that accounting, tax, and customs rules in Honduras reference — published official rates, not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency bch-exchange-rate npm package.

USD → HNL — official Banco Central de Honduras reference rate
Weekly observations, Aug '25 – Aug '26 · undefineds per 1 US dollar
2626.50Aug '25Dec '25Feb '26May '26Aug '2626.842025-08-27: 26.00 HNL2025-09-03: 25.98 HNL2025-09-10: 26.04 HNL2025-09-17: 26.07 HNL2025-09-24: 26.16 HNL2025-10-08: 26.16 HNL2025-10-15: 26.18 HNL2025-10-22: 26.19 HNL2025-10-29: 26.24 HNL2025-11-05: 26.24 HNL2025-11-12: 26.26 HNL2025-11-19: 26.28 HNL2025-11-26: 26.29 HNL2025-12-03: 26.31 HNL2025-12-10: 26.33 HNL2025-12-17: 26.33 HNL2025-12-24: 26.37 HNL2025-12-31: 26.37 HNL2026-01-07: 26.38 HNL2026-01-14: 26.40 HNL2026-01-21: 26.41 HNL2026-01-28: 26.43 HNL2026-02-04: 26.45 HNL2026-02-11: 26.46 HNL2026-02-18: 26.48 HNL2026-02-25: 26.50 HNL2026-03-04: 26.51 HNL2026-03-11: 26.50 HNL2026-03-18: 26.51 HNL2026-03-25: 26.54 HNL2026-04-01: 26.55 HNL2026-04-08: 26.55 HNL2026-04-15: 26.56 HNL2026-04-22: 26.58 HNL2026-04-29: 26.61 HNL2026-05-06: 26.60 HNL2026-05-13: 26.62 HNL2026-05-20: 26.63 HNL2026-05-27: 26.65 HNL2026-06-03: 26.67 HNL2026-06-10: 26.68 HNL2026-06-17: 26.69 HNL2026-06-24: 26.72 HNL2026-07-01: 26.73 HNL2026-07-08: 26.75 HNL2026-07-15: 26.76 HNL2026-07-22: 26.77 HNL2026-07-29: 26.79 HNL2026-08-05: 26.81 HNL2026-08-12: 26.82 HNL2026-08-19: 26.84 HNL
Source: Banco Central de Honduras published rates · chart data from the AllRatesToday API (/api/v1/central-bank/bch/history?source=USD&target=HNL).

What the BCH publishes

The lempira trades under a managed crawl against the dollar; the BCH reference price is the number that appears in Honduran invoices, customs paperwork and bank spreads alike.

Why official rates, not market rates

A live mid-market feed answers "what is USD/HNL 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 Banco Central de Honduras's published rates, and it never changes after publication.

Get the latest rates (REST)

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

The response is the bank's most recent published data — every rate and the publication date. The latest rates are available on every plan, including the free tier (300 requests/month, no credit card).

The npm SDK

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

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

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

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

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

Historical dates and time series need a paid plan; the latest rates stay free.

Published vs derived pairs

If the BCH does not print a pair directly, the API resolves it from the bank's published rates — an inverse, or a cross rate via HNL — 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.

The managed crawl since 2019

Our archive tracks the lempira from just under 24.5 per dollar in 2019 to the high-26s today — a slow, steady official crawl. For a filing that needs the reference price on a given date, one call returns it with the publication date attached.

FAQ

Does the Banco Central de Honduras have an official exchange rate API?

The BCH publishes its official rates on its own site, and AllRatesToday serves the same published rates as clean JSON via REST or the bch-exchange-rate npm package. The latest table is free.

How often do Banco Central de Honduras rates update?

Once per business day. The Saturday publication spans the weekend by the bank's convention — the API resolves Sunday and Monday-morning queries to it and flags the carry-over explicitly.

Can I get the BCH rate for a past date, like an invoice date?

Yes. The /central-bank/bch/rates-for-date endpoint returns the official rates for any archived date. Non-publication days resolve to the most recent published date and are flagged, so your audit trail stays honest. Historical dates require a paid plan; latest rates are free.

Official Banco Central de Honduras rates, as JSON

The latest rates are free — 300 requests/month, no credit card.

Get your free API key

Related Articles