National Bank of Ethiopia Exchange Rate API: Official ETB Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

The National Bank of Ethiopia publishes the official exchange rates that accounting, tax, and customs practice in Ethiopia 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 national-bank-of-ethiopia-exchange-rate npm package.

USD → ETB — official National Bank of Ethiopia weighted-average indicative rate
Weekly observations, Aug '25 – Aug '26 · undefineds per 1 US dollar
140150160Aug '25Nov '25Feb '26May '26Aug '26160.92025-08-22: 141.3 ETB2025-08-29: 141.7 ETB2025-09-05: 142.1 ETB2025-09-12: 143.6 ETB2025-09-19: 143.7 ETB2025-09-26: 144.4 ETB2025-10-03: 145.0 ETB2025-10-10: 146.3 ETB2025-10-17: 149.5 ETB2025-10-24: 151.0 ETB2025-10-31: 152.1 ETB2025-11-07: 153.1 ETB2025-11-14: 155.7 ETB2025-11-21: 154.1 ETB2025-11-28: 153.0 ETB2025-12-05: 155.0 ETB2025-12-12: 155.1 ETB2025-12-19: 155.0 ETB2025-12-26: 155.0 ETB2025-12-31: 154.9 ETB2026-01-02: 155.1 ETB2026-01-09: 155.2 ETB2026-01-16: 155.6 ETB2026-01-23: 155.8 ETB2026-01-30: 155.4 ETB2026-02-06: 155.5 ETB2026-02-13: 155.1 ETB2026-02-20: 155.5 ETB2026-02-27: 156.0 ETB2026-03-06: 156.0 ETB2026-03-13: 156.8 ETB2026-03-19: 157.1 ETB2026-03-27: 156.4 ETB2026-04-03: 156.6 ETB2026-04-09: 156.4 ETB2026-04-17: 156.9 ETB2026-04-24: 157.5 ETB2026-04-30: 156.7 ETB2026-05-08: 157.3 ETB2026-05-15: 157.4 ETB2026-05-22: 158.2 ETB2026-05-29: 158.0 ETB2026-06-05: 158.3 ETB2026-06-12: 158.7 ETB2026-06-19: 158.9 ETB2026-06-26: 158.2 ETB2026-07-03: 159.0 ETB2026-07-10: 158.8 ETB2026-07-17: 160.0 ETB2026-07-24: 159.8 ETB2026-07-31: 160.0 ETB2026-08-07: 160.0 ETB2026-08-14: 161.7 ETB2026-08-21: 160.9 ETB
Source: National Bank of Ethiopia published rates · chart data from the AllRatesToday API (/api/v1/central-bank/nbe/history?source=USD&target=ETB).

The rate of a brand-new float

Ethiopia floated the birr in July 2024 — one of the most consequential African currency reforms in decades — and the NBE now publishes daily indicative rates: a weighted average of banks’ actual foreign-exchange transactions from the previous day, with buying and selling sides. That transaction-weighted construction makes it a genuine market measure with official standing, the reference for a rapidly repricing economy.

Why official rates, not market rates

A live mid-market feed answers "what is USD/ETB 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 National Bank of Ethiopia’s published rates, and it never changes after publication.

Get the latest rates (REST)

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

The response is the bank's most recent published table — 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 national-bank-of-ethiopia-exchange-rate
import { getRate, getLatestRates } from 'national-bank-of-ethiopia-exchange-rate';

// One pair at the official rate
const pair = await getRate('USD', 'ETB', { 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 'national-bank-of-ethiopia-exchange-rate';

const day = await getRatesForDate('2026-08-18', { apiKey: 'art_live_...' });

const series = await getHistory(
  { source: 'USD', target: 'ETB', 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 National Bank of Ethiopia does not print a pair directly, the API resolves it from the bank's published rates — an inverse, or a cross via ETB — 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 archive

The series starts in late September 2024, shortly after the float, and records the birr’s move from the old 57-per-dollar crawl into the 100s and beyond.

FAQ

Does the National Bank of Ethiopia have an official exchange rate API?

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

How do I get the official Ethiopia exchange rate for a past date?

The rates-for-date endpoint returns the official table for any archived date; non-publication days resolve to the most recent published date and are flagged, so audit trails stay honest. Historical dates require a paid plan; latest rates are free.

Is this the pre-float official rate too?

No — the published API series begins with the post-float regime (late September 2024). The pre-float crawling-peg values belong to a different arrangement and are not part of this feed.

Official National Bank of Ethiopia rates, as JSON

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

Get your free API key

Related Articles