Central Bank of Nigeria Exchange Rate API

Official Central Bank of Nigeria rates for 10 Sept 2026: 1 USD = 1327.22 NGN, 1 EUR = 1539.84 NGN. All 13 currencies published, history back to 2001. Free JSON API for tax, audits, and compliant invoicing.

Nigeria flagCentral Bank of Nigeria publishes official daily exchange rates — 13 currencies against the NGN — and this API serves them as JSON, with history back to 2001. The latest table is on every plan. Get your API key.

About Central Bank of Nigeria

The Central Bank of Nigeria is Nigeria's central bank. It publishes official naira exchange rates (buying, central, and selling) each business day, with an archive reaching back to 2001 — the official reference for Nigerian customs and tax.

Quick start

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

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

Or the bank's full published table:

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

Latest published rates (2026-09-10)

The most recent table as published by Central Bank of Nigeria — exactly what the /latest endpoint returns right now. Values are NGN 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
AED NGN buy 361.3634
AED NGN middle 361.4995
AED NGN sell 361.6356
CHF NGN buy 1631.6885
CHF NGN middle 1632.3032
CHF NGN sell 1632.9179
CNY NGN buy 197.9028
CNY NGN middle 197.9774
CNY NGN sell 198.0519
DKK NGN buy 205.9838
DKK NGN middle 206.0614
DKK NGN sell 206.139
EUR NGN buy 1539.8353
EUR NGN middle 1540.4154
EUR NGN sell 1540.9955
GBP NGN buy 1791.8735
GBP NGN middle 1792.5486
GBP NGN sell 1793.2236
JPY NGN buy 8.6032
JPY NGN middle 8.6064
JPY NGN sell 8.6097
SAR NGN buy 353.4528
SAR NGN middle 353.586
SAR NGN sell 353.7191
USD NGN buy 1327.2154
USD NGN middle 1327.7154
USD NGN sell 1328.2154
XDR NGN buy 1822.8905
XDR NGN middle 1823.5773
XDR NGN sell 1824.264
XOF NGN buy 2.3223
XOF NGN middle 2.3323
XOF NGN sell 2.3423
XUA NGN buy 1810.2131
XUA NGN middle 1810.895
XUA NGN sell 1811.577
ZAR NGN buy 81.9603
ZAR NGN middle 81.9911
ZAR NGN sell 82.022

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — cbn-exchange-rate:

npm install cbn-exchange-rate
import { getRate } from 'cbn-exchange-rate';

const pair = await getRate('USD', 'NGN', { 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: cbn-exchange-rate documentation.

Why use the official Central Bank of Nigeria rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Nigeria and beyond typically require the official rate published by Central Bank of Nigeria 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.

If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via NGN) 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

Can I get Central Bank of Nigeria exchange rates via an API?

Yes — this API serves the bank's official daily NGN rates as JSON, and the latest table is on every plan, free included.

When do new rates appear here?

Once per business day, per Central Bank of Nigeria's own schedule; ingestion follows within the hour (latest table: 2026-09-10).

Are these the official rates?

Yes — ingested from Central Bank of Nigeria's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.

Central Bank of Nigeria rates, one API key

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

Get Free API Key Read the Docs