npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@allratestoday/nrb-exchange-rate

v1.3.1

Published

Official Nepal Rastra Bank (Nepal) daily exchange rates — 22 currencies vs NPR, history since 1998. Zero-dependency Node.js/TypeScript client.

Readme

Nepal Rastra Bank Exchange Rates API — nrb-exchange-rate

npm version license zero dependencies TypeScript

Official Nepal Rastra Bank (Nepal) daily exchange rates for Node.js and TypeScript. The published central bank rates behind tax filings, customs valuations, audits, and compliant invoicing — not market estimates, but the numbers Nepal Rastra Bank itself prints, every business day.

🚀 Why this client?

  • 🏛️ Official published rates — Nepal Rastra Bank's own table, with the publisher's own rate_date on every response
  • 📅 History back to 1998 — point-in-time tables and daily series for any past date
  • 🔀 Published vs derived, always flagged — computed inverse/cross pairs carry derived: true, never mixed with official prints
  • Zero dependencies — pure ESM + CJS over global fetch; Node 18+, Bun, Deno, and edge runtimes
  • 🔷 Type-safe — full TypeScript definitions shipped with the package
  • 🧾 Compliance-grade metadatarate_type, publication date, and source disclaimer on every response

Official rate, not mid-market: every value here is a number Nepal Rastra Bank itself published, fixed once printed and carrying the central bank's own rate_date — what filings and audits require. Need the live interbank midpoint for pricing or display instead? Use the mid-market API or @allratestoday/sdk. The two can diverge by several percent.

⚡ Try it without a key

The latest Nepal Rastra Bank table is also served keyless, CORS-open and edge-cached, for evaluation, embeds and AI agents:

curl "https://allratestoday.com/api/open/central-bank/nrb?source=USD&target=NPR"
const r = await fetch('https://allratestoday.com/api/open/central-bank/nrb').then((x) => x.json());
console.log(r.rate_date, r.rates.length); // the central bank's latest published table, no key

The open endpoint serves the latest table only and asks for a visible attribution link. The client below uses the keyed API, which adds point-in-time tables, history, and CSV/XML/Excel output.

🔑 Get your API key

Get a free API key at allratestoday.com/register — no credit card required. Latest rates are on every plan, including free.

📦 Installation

npm install @allratestoday/nrb-exchange-rate
yarn add @allratestoday/nrb-exchange-rate
pnpm add @allratestoday/nrb-exchange-rate

Requires Node 18+ (global fetch); also runs on Bun, Deno and edge runtimes. Scoped mirror of nrb-exchange-rate — same code, same versions.

🏁 Quick start

import { getRate } from '@allratestoday/nrb-exchange-rate';

const pair = await getRate('USD', 'NPR', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date); // the official Nepal Rastra Bank rate, on the central bank's own date

📚 API reference


Latest pair rate

Free plan and up. Pairs the central bank does not print directly are resolved from its table and flagged (see Published vs derived rates below).

const pair = await getRate('USD', 'NPR', { apiKey: 'art_live_...' });

Response:

{
  bank: 'nrb',
  name: 'Nepal Rastra Bank',
  rate_date: '2026-09-09',   // Nepal Rastra Bank's own publication date
  source: 'USD',
  target: 'NPR',
  rate: 152.02,
  rate_type: 'sell',
  derived: false,
  method: 'published',
  disclaimer: 'Official rates as published by the named central bank. On weekends/holidays the most recent published rate_date is returned.'
}

Full published table

Free plan and up. The complete table for the latest publication date.

import { getLatestRates } from '@allratestoday/nrb-exchange-rate';

const table = await getLatestRates({ apiKey: 'art_live_...' });
console.log(table.rate_date, table.rates.length);

Response:

{
  bank: 'nrb',
  name: 'Nepal Rastra Bank',
  rate_date: '2026-09-09',
  rates: [
    { "base": "USD", "quote": "NPR", "type": "sell", "value": 152.02 },
    { "base": "USD", "quote": "NPR", "type": "buy", "value": 151.42 },
    // … the rest of the published table (22 currencies vs NPR)
  ],
  disclaimer: '…'
}

Table for a date

Paid plans. The official table for any date since 1998 — weekends and holidays return the most recent published date, flagged via published_on_requested_date, which is exactly the in-force rate a filing needs.

import { getRatesForDate } from '@allratestoday/nrb-exchange-rate';

const day = await getRatesForDate('2026-06-30', { apiKey: 'art_live_...' });
// Optionally narrow to one pair:
const one = await getRatesForDate('2026-06-30', { apiKey: 'art_live_...', source: 'USD', target: 'NPR' });

Response:

{
  bank: 'nrb',
  requested_date: '2026-06-30',
  rate_date: '2026-06-30',                // the date actually published
  published_on_requested_date: true,      // false when a weekend/holiday fell back
  rates: [ /* the full table for that date */ ],
  disclaimer: '…'
}

Daily time series

Paid plans. One resolved rate per publication date — ready for charting, revaluation runs, or audit workpapers.

import { getHistory } from '@allratestoday/nrb-exchange-rate';

const series = await getHistory(
  { source: 'USD', target: 'NPR', from: '2026-01-01', to: '2026-09-09' },
  { apiKey: 'art_live_...' }
);

Response:

{
  bank: 'nrb',
  source: 'USD',
  target: 'NPR',
  from: '2026-01-01',
  to: '2026-09-09',
  count: 152,
  rates: [
    // one entry per publication date
    { date: '2026-09-09', rate: 152.02, rate_type: 'sell', derived: false, method: 'published' },
    // …
  ],
  disclaimer: '…'
}

Pass { symbol: 'USD' } instead of source/target to get the raw published rows for one currency (all rate types, no pair resolution).


🗺️ Currencies covered

Nepal Rastra Bank currently publishes rates covering 22 currencies against the NPR (as of the latest table):

🇦🇪 AED · 🇦🇺 AUD · 🇧🇭 BHD · 🇨🇦 CAD · 🇨🇭 CHF · 🇨🇳 CNY · 🇩🇰 DKK · 🇪🇺 EUR · 🇬🇧 GBP · 🇭🇰 HKD · 🇮🇳 INR · 🇯🇵 JPY · 🇰🇷 KRW · 🇰🇼 KWD · 🇲🇾 MYR · 🇴🇲 OMR · 🇶🇦 QAR · 🇸🇦 SAR · 🇸🇪 SEK · 🇸🇬 SGD · 🇹🇭 THB · 🇺🇸 USD

🏛️ Source

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.

🧭 Reading the numbers

  • value is always quote currency per 1 unit of base currency (base: "EUR", quote: "USD", value: 1.15 means 1 EUR = 1.15 USD).
  • Nepal Rastra Bank quotes NPR per 1 unit of foreign currency (e.g. base: "USD", quote: "NPR" means NPR per one US dollar).
  • Need the other way round? Ask getRate(target, source) and the API inverts or crosses for you, flagged derived: true — never divide a published rate yourself in a compliance workflow.
  • rate_type tells you which of the central bank's series a row belongs to (sell here); some publishers print buy/sell or several fixings for the same pair.

🧩 ERP & accounting systems

Loading the official Nepal Rastra Bank rate into an accounting system is a supported workflow, not a hack. Step-by-step guides with the direction each system expects:

The same keyed endpoints return ?format=csv, ?format=xml and ?format=xlsx, and accept the key as ?api_key= on the URL for importers that cannot send headers:

curl "https://allratestoday.com/api/v1/central-bank/nrb/latest?format=xml&api_key=art_live_..."

🤖 AI agents

  • MCP server: npx -y @allratestoday/central-bank-mcp (stdio) or the hosted endpoint https://allratestoday.com/api/mcp — tools for official rates, history, cross-bank comparison and publication calendars
  • Machine-readable site guide: llms.txt · for-ai-agents

⚖️ Published vs derived rates

If Nepal Rastra Bank does not print a pair directly, the API resolves it from the central bank's own table and says so — official and computed values are never confused:

| method | derived | Meaning | | --- | --- | --- | | published | false | The central bank printed this pair directly | | inverse | true | Computed as 1 ÷ the published opposite direction | | cross | true | Computed via NPR from two published rates |

🛡️ Error handling

Errors are thrown as Error with status (HTTP code) and body (the API's JSON error) attached:

try {
  const pair = await getRate('USD', 'XXX', { apiKey: 'art_live_...' });
} catch (err) {
  console.log(err.message); // human-readable reason
  console.log(err.status);  // e.g. 404
}

| Status | Meaning | | ------ | ------- | | — | Missing apiKey (thrown before any request) | | 400 | Malformed date or parameters | | 401 | Invalid API key | | 403 | Endpoint needs a paid plan (historical dates & series) | | 404 | Pair or date range not covered by Nepal Rastra Bank | | 429 | Monthly quota exceeded |

🔷 TypeScript

Full definitions ship with the package — no @types install:

import type { LatestRates, PairRate, DatedRates, RateEntry, HistoryQuery, RequestOptions } from '@allratestoday/nrb-exchange-rate';

📦 CommonJS

const { getRate } = require('@allratestoday/nrb-exchange-rate');

getRate('USD', 'NPR', { apiKey: 'art_live_...' }).then((pair) => console.log(pair.rate));

💡 Quota tips

  • Rates change once per business day — cache the published table locally and a small monthly quota goes a long way.
  • Every request counts toward your AllRatesToday quota, shared across all AllRatesToday endpoints on your key.

📖 Methods reference

| Method | Plan | Description | | ------ | ---- | ----------- | | getRate(source, target, { apiKey }) | Free | Latest rate for one pair, resolved from the published table | | getLatestRates({ apiKey }) | Free | The central bank's full latest published table | | getRatesForDate(date, { apiKey, source?, target? }) | Paid | The official table (or one pair) for a YYYY-MM-DD date | | getHistory({ symbol \| source+target, from?, to? }, { apiKey }) | Paid | Daily series since 1998 |

📥 Bulk data (no key)

Need the whole archive rather than an API call? The same published tables are mirrored daily as open data:

🔗 Links

📜 License

MIT