National Bank of Serbia Exchange Rate API
Official National Bank of Serbia (Serbia) daily exchange rates as JSON: 35 currencies, history back to 2026. The published RSD rates required for tax, audits, and compliant invoicing.
About National Bank of Serbia
The National Bank of Serbia forms an official middle exchange rate list (srednji kurs) each business morning — around 20 currencies against the Serbian dinar, with the EUR/RSD middle rate as the headline figure Serbian law, accounting and courts reference. The list applies from noon on its formation day; the archive reaches back to 2002.
- Official website: www.nbs.rs
- Official rate publication: Official middle exchange rate list
Quick start
One request for the pair you need — EUR to RSD at the official National Bank of Serbia rate:
curl "https://allratestoday.com/api/v1/central-bank/nbs/latest?source=EUR&target=RSD" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/nbs/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/nbs/history?source=EUR&target=RSD&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-08-21)
The most recent table as published by National Bank of Serbia — exactly what the /latest endpoint returns right now. Values are RSD 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 | RSD | middle | 27.3267 |
ATS | RSD | middle | 8.5293 |
AUD | RSD | middle | 71.6516 |
BAM | RSD | middle | 60.0079 |
BEF | RSD | middle | 2.90941 |
BYN | RSD | middle | 32.8524 |
CAD | RSD | middle | 72.8932 |
CHF | RSD | middle | 125.4171 |
CNY | RSD | middle | 14.9305 |
CZK | RSD | middle | 4.8631 |
DEM | RSD | middle | 60.0079 |
DKK | RSD | middle | 15.6966 |
ESP | RSD | middle | 0.70538 |
EUR | RSD | middle | 117.3653 |
FIM | RSD | middle | 19.7394 |
FRF | RSD | middle | 17.8922 |
GBP | RSD | middle | 136.9011 |
GRD | RSD | middle | 0.34443199999999996 |
HUF | RSD | middle | 0.32201599999999997 |
IEP | RSD | middle | 149.0232 |
INR | RSD | middle | 1.0483 |
ITL | RSD | middle | 0.060614 |
JPY | RSD | middle | 0.631064 |
KWD | RSD | middle | 327.1051 |
LUF | RSD | middle | 2.90941 |
MKD | RSD | middle | 1.8994 |
NOK | RSD | middle | 10.7545 |
PLN | RSD | middle | 27.1767 |
PTE | RSD | middle | 0.585416 |
RON | RSD | middle | 22.337 |
RUB | RSD | middle | 1.1981 |
SEK | RSD | middle | 10.6012 |
TRY | RSD | middle | 2.0901 |
USD | RSD | middle | 100.3551 |
XDR | RSD | middle | 137.8909 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — national-bank-of-serbia-exchange-rate:
npm install national-bank-of-serbia-exchange-rate import { getRate } from 'national-bank-of-serbia-exchange-rate';
const pair = await getRate('EUR', 'RSD', { 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 Serbia rate?
Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Serbia and beyond typically require the official rate published by National Bank of Serbia 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 RSD) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.
Endpoints
GET /api/v1/central-bank/nbs/latest— latest table or single pair (all plans)GET /api/v1/central-bank/nbs/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/nbs/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/nbs/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 Serbia exchange rates?
Yes — this one. Official daily RSD rates as clean JSON, latest table on every plan including free.
How often are the rates updated?
National Bank of Serbia publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-08-21).
Are these the official rates?
Yes — ingested from National Bank of Serbia's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.
National Bank of Serbia rates, one API key
Latest table on every plan. History back to 2026 on paid plans. No credit card to start.
Get Free API Key Read the Docs