Banco Central de Nicaragua Exchange Rate API
Official Banco Central de Nicaragua rates for 2 Sept 2026: 1 USD = 36.624 NIO. All 1 currency published, history back to 2012. Free JSON API for tax, audits, and compliant invoicing.
About Banco Central de Nicaragua
The Banco Central de Nicaragua publishes the official córdoba/dollar exchange rate under the country's long-running crawling-peg regime: the rate for every day of the coming month is pre-announced in advance, sliding by a fixed annual percentage. Because the path is administratively set, the official table is the one Nicaraguan invoices, customs valuations and tax filings must use — and the only currency the bank quotes is the US dollar.
- Official website: www.bcn.gob.ni
- Official rate publication: Tipo de cambio oficial
Quick start
One request for the pair you need — USD to NIO at the official Banco Central de Nicaragua rate:
curl "https://allratestoday.com/api/v1/central-bank/bcn/latest?source=USD&target=NIO" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/bcn/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/bcn/history?source=USD&target=NIO&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-09-02)
This table has not been updated since 2026-09-02. Banco Central de Nicaragua publishes each business day,
and we have been unable to collect a newer one for 8 days. The rates below
are the last we hold and remain the ones Banco Central de Nicaragua published on that
date — they are not today's. API responses for this source carry
"stale": true so integrations can detect it too.
The most recent table as published by Banco Central de Nicaragua — exactly what the /latest endpoint returns right now. Values are NIO per 1 unit of each currency:
Download this table: Excel (.xlsx) CSV (paid plan required)
One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.
Prefer a bulk file? The complete archive of every source is also published as an open dataset: central-bank-exchange-rates on Hugging Face
| Base | Quote | Type | Rate |
|---|---|---|---|
USD | NIO | reference | 36.6243 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — bcn-exchange-rate:
npm install bcn-exchange-rate import { getRate } from 'bcn-exchange-rate';
const pair = await getRate('USD', 'NIO', { 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: bcn-exchange-rate documentation.
Why use the official Banco Central de Nicaragua rate?
Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Nicaragua and beyond typically require the official rate published by Banco Central de Nicaragua 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 NIO) and marks it "derived": true — published and computed values are never silently mixed.
Endpoints
GET /api/v1/central-bank/bcn/latest— latest table or single pair (all plans)GET /api/v1/central-bank/bcn/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/bcn/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/bcn/availability— publication calendar: the dates the bank actually published (all 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 published table locally makes a small quota go far.
Frequently asked questions
Can I get Banco Central de Nicaragua exchange rates via an API?
Yes — this API serves the bank's official daily NIO rates as JSON, and the latest table is on every plan, free included.
When do new rates appear here?
Once per business day, per Banco Central de Nicaragua's own schedule; ingestion follows within the hour (latest table: 2026-09-02).
Are these the official rates?
Yes — ingested from Banco Central de Nicaragua's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.
Banco Central de Nicaragua rates, one API key
Latest table on every plan. History back to 2012 on paid plans. No credit card to start.
Get Free API Key Read the Docs