National Bank of Moldova Exchange Rate API
Official National Bank of Moldova (Moldova) daily exchange rates as JSON: 40 currencies. The published MDL rates required for tax, audits, and compliant invoicing.
About National Bank of Moldova
The National Bank of Moldova sets the official leu exchange rate each working afternoon, valid for the following day — the rate Moldovan accounting, customs and tax filings reference. The table covers 40 currencies and its archive reaches back to 1994, the leu's first year.
- Official website: www.bnm.md
- Official rate publication: Official exchange rates
Quick start
One request for the pair you need — USD to MDL at the official National Bank of Moldova rate:
curl "https://allratestoday.com/api/v1/central-bank/nbm/latest?source=USD&target=MDL" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/nbm/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/nbm/history?source=USD&target=MDL&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-08-24)
The most recent table as published by National Bank of Moldova — exactly what the /latest endpoint returns right now. Values are MDL 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.
| Base | Quote | Type | Rate |
|---|---|---|---|
AED | MDL | reference | 4.6648 |
ALL | MDL | reference | 0.21675 |
AMD | MDL | reference | 0.04695 |
AUD | MDL | reference | 12.2669 |
AZN | MDL | reference | 10.0808 |
BYN | MDL | reference | 5.7592 |
CAD | MDL | reference | 12.4696 |
CHF | MDL | reference | 21.444 |
CNY | MDL | reference | 2.5492 |
CZK | MDL | reference | 0.8311 |
DKK | MDL | reference | 2.6821 |
EUR | MDL | reference | 20.0508 |
GBP | MDL | reference | 23.3875 |
GEL | MDL | reference | 6.5605 |
HKD | MDL | reference | 2.1855 |
HUF | MDL | reference | 0.055116 |
ILS | MDL | reference | 5.7318 |
INR | MDL | reference | 0.17899 |
ISK | MDL | reference | 0.1414 |
JPY | MDL | reference | 0.107957 |
KGS | MDL | reference | 0.19792 |
KRW | MDL | reference | 0.012374000000000001 |
KWD | MDL | reference | 55.5809 |
KZT | MDL | reference | 0.03716 |
MKD | MDL | reference | 0.32432 |
MYR | MDL | reference | 4.2425 |
NOK | MDL | reference | 1.8454 |
NZD | MDL | reference | 10.2418 |
PLN | MDL | reference | 4.6508 |
RON | MDL | reference | 3.8136 |
RSD | MDL | reference | 0.17085999999999998 |
RUB | MDL | reference | 0.2066 |
SEK | MDL | reference | 1.8103 |
TJS | MDL | reference | 1.858 |
TMT | MDL | reference | 4.8953 |
TRY | MDL | reference | 0.3562 |
UAH | MDL | reference | 0.3835 |
USD | MDL | reference | 17.1338 |
UZS | MDL | reference | 0.001447 |
XDR | MDL | reference | 23.5462 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — nbm-exchange-rate:
npm install nbm-exchange-rate import { getRate } from 'nbm-exchange-rate';
const pair = await getRate('USD', 'MDL', { 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.
Why use the official National Bank of Moldova rate?
Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Moldova and beyond typically require the official rate published by National Bank of Moldova 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.
Pairs the bank doesn't print directly are resolved from its table (inverse or cross via MDL) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.
Endpoints
GET /api/v1/central-bank/nbm/latest— latest table or single pair (all plans)GET /api/v1/central-bank/nbm/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/nbm/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/nbm/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
Is there an API for National Bank of Moldova exchange rates?
Yes — this one. Official daily MDL rates as clean JSON, latest table on every plan including free.
How often are the rates updated?
National Bank of Moldova publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-08-24).
Are these the official rates?
Yes — ingested from National Bank of Moldova's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.
National Bank of Moldova rates, one API key
Latest table on every plan. No credit card to start.
Get Free API Key Read the Docs