Nepal Rastra Bank Exchange Rate API

Official Nepal Rastra Bank rates for 10 Sept 2026: 1 USD = 151.88 NPR, 1 EUR = 176.54 NPR. All 22 currencies published, history back to 1998. Free JSON API for tax, audits, and compliant invoicing.

Nepal flagNepal Rastra Bank publishes official daily exchange rates — 22 currencies against the NPR — and this API serves them as JSON, with history back to 1998. The latest table is on every plan. Get your API key.

About Nepal Rastra Bank

Nepal Rastra Bank is Nepal's central bank and publishes the official buying and selling rates for around 22 currencies against the Nepalese rupee each business day. Because the rupee is pegged to the Indian rupee at a fixed 1.60, the INR rate is a constant and the rest are set from it, and these are the rates Nepali customs, tax filings and audited accounts are expected to cite.

Quick start

One request for the pair you need — USD to NPR at the official Nepal Rastra Bank rate:

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

Or the bank's full published table:

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

Latest published rates (2026-09-10)

The most recent table as published by Nepal Rastra Bank — exactly what the /latest endpoint returns right now. Values are NPR 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 NPR buy 41.35
AED NPR sell 41.52
AUD NPR buy 109.58
AUD NPR sell 110.01
BHD NPR buy 402.84
BHD NPR sell 404.43
CAD NPR buy 110.17
CAD NPR sell 110.61
CHF NPR buy 187.37
CHF NPR sell 188.11
CNY NPR buy 22.64
CNY NPR sell 22.73
DKK NPR buy 23.62
DKK NPR sell 23.71
EUR NPR buy 176.54
EUR NPR sell 177.24
GBP NPR buy 205.52
GBP NPR sell 206.33
HKD NPR buy 19.37
HKD NPR sell 19.44
INR NPR buy 1.6
INR NPR sell 1.6015000000000001
JPY NPR buy 0.9880000000000001
JPY NPR sell 0.992
KRW NPR buy 0.1134
KRW NPR sell 0.1139
KWD NPR buy 495.29
KWD NPR sell 497.24
MYR NPR buy 37.32
MYR NPR sell 37.47
OMR NPR buy 394.49
OMR NPR sell 396.05
QAR NPR buy 41.67
QAR NPR sell 41.83
SAR NPR buy 40.45
SAR NPR sell 40.61
SEK NPR buy 15.82
SEK NPR sell 15.88
SGD NPR buy 120.05
SGD NPR sell 120.52
THB NPR buy 4.62
THB NPR sell 4.63
USD NPR buy 151.88
USD NPR sell 152.48

Node.js / TypeScript client

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

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

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

Why use the official Nepal Rastra Bank rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Nepal and beyond typically require the official rate published by Nepal Rastra Bank 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 NPR) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.

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 Nepal Rastra Bank exchange rates via an API?

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

When do new rates appear here?

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

Are these the official rates?

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

Nepal Rastra Bank rates, one API key

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

Get Free API Key Read the Docs