National Bank of North Macedonia Exchange Rate API
Official National Bank of North Macedonia rates for 10 Sept 2026: 1 USD = 52.512 MKD, 1 EUR = 61.188 MKD. All 31 currencies published, history back to 1993. Free JSON API for tax, audits, and compliant invoicing.
About National Bank of North Macedonia
The National Bank of the Republic of North Macedonia publishes a daily exchange rate list — middle, buying and selling rates for 31 currencies against the denar, which has tracked the euro in a tight managed band for two decades. The series runs unbroken since 1993, the denar's first year as a full currency.
- Official website: www.nbrm.mk
- Official rate publication: Exchange rate list
Quick start
One request for the pair you need — EUR to MKD at the official National Bank of North Macedonia rate:
curl "https://allratestoday.com/api/v1/central-bank/nbrm/latest?source=EUR&target=MKD" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/nbrm/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/nbrm/history?source=EUR&target=MKD&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-09-10)
National Bank of North Macedonia's newest published table, verbatim — the same rows the /latest endpoint returns at this moment. Values are MKD 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 |
|---|---|---|---|
AUD | MKD | buy | 37.9387 |
AUD | MKD | reference | 38.1293 |
AUD | MKD | sell | 38.3199 |
BRL | MKD | reference | 10.3709 |
CAD | MKD | buy | 38.1397 |
CAD | MKD | reference | 38.3314 |
CAD | MKD | sell | 38.5231 |
CHF | MKD | buy | 65.0654 |
CHF | MKD | reference | 65.3924 |
CHF | MKD | sell | 65.7194 |
CNY | MKD | reference | 7.8679 |
CZK | MKD | reference | 2.5362 |
DKK | MKD | buy | 8.1859 |
DKK | MKD | reference | 8.227 |
DKK | MKD | sell | 8.2681 |
EUR | MKD | buy | 61.1875 |
EUR | MKD | reference | 61.495 |
EUR | MKD | sell | 61.8025 |
GBP | MKD | buy | 71.2327 |
GBP | MKD | reference | 71.5907 |
GBP | MKD | sell | 71.9487 |
HKD | MKD | reference | 6.7297 |
HUF | MKD | reference | 0.169 |
IDR | MKD | reference | 0.003 |
ILS | MKD | reference | 17.4801 |
INR | MKD | reference | 0.5549 |
JPY | MKD | buy | 0.3426 |
JPY | MKD | reference | 0.3443 |
JPY | MKD | sell | 0.346 |
KRW | MKD | reference | 0.0395 |
MXN | MKD | reference | 3.1224 |
MYR | MKD | reference | 12.9671 |
NOK | MKD | buy | 5.7198 |
NOK | MKD | reference | 5.7485 |
NOK | MKD | sell | 5.7772 |
NZD | MKD | reference | 30.8974 |
PHP | MKD | reference | 0.8445 |
PLN | MKD | reference | 14.2505 |
RON | MKD | reference | 11.7031 |
RSD | MKD | reference | 0.524 |
RUB | MKD | reference | 0.6196 |
SEK | MKD | buy | 5.4879 |
SEK | MKD | reference | 5.5155 |
SEK | MKD | sell | 5.5431 |
SGD | MKD | reference | 41.7737 |
THB | MKD | reference | 1.6054 |
TRY | MKD | reference | 1.0887 |
USD | MKD | buy | 52.5124 |
USD | MKD | reference | 52.7763 |
USD | MKD | sell | 53.0402 |
ZAR | MKD | reference | 3.2903 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — nbrm-exchange-rate:
npm install nbrm-exchange-rate import { getRate } from 'nbrm-exchange-rate';
const pair = await getRate('EUR', 'MKD', { 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: nbrm-exchange-rate documentation.
Why use the official National Bank of North Macedonia rate?
A market rate is a moving target; the rate National Bank of North Macedonia publishes is a fixed, citable figure that stays put once printed — which is why invoicing, customs, audit evidence, and statutory accounting in North Macedonia lean on it rather than on a live feed. Every response from this API carries the bank's own rate_date, and on days with no publication you get the most recent published table — the one compliance rules tell 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 MKD) and marks it "derived": true — published and computed values are never silently mixed.
Endpoints
GET /api/v1/central-bank/nbrm/latest— latest table or single pair (all plans)GET /api/v1/central-bank/nbrm/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/nbrm/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/nbrm/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
Does an exchange rate API exist for National Bank of North Macedonia data?
Yes. This endpoint returns National Bank of North Macedonia's official daily figures as JSON; the newest table is free on every plan.
How often are the rates updated?
National Bank of North Macedonia publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-09-10).
Are these really National Bank of North Macedonia's official figures?
Yes. Every value comes from National Bank of North Macedonia's own publication and is served unmodified, carrying the bank's publication date; computed pairs are explicitly flagged derived.
National Bank of North Macedonia rates, one API key
Latest table on every plan. History back to 1993 on paid plans. No credit card to start.
Get Free API Key Read the Docs