Home Documentation Bank Rates Playground Pricing API Status Blog About FAQ Support

National Bank of Ukraine Exchange Rate API

Official National Bank of Ukraine (Ukraine) daily exchange rates as JSON: 45 currencies, history back to 1996. The published UAH rates required for tax, audits, and compliant invoicing.

Ukraine flagNational Bank of Ukraine official daily exchange rates as JSON: 45 currencies against the UAH, history back to 1996. Latest table on every plan. Get your API key.

About National Bank of Ukraine

The National Bank of Ukraine sets the hryvnia's official exchange rates for around 45 currencies each business day — published in the afternoon for the next working day, and the legally mandated reference for Ukrainian accounting and customs.

Quick start

One request for the pair you need — USD to UAH at the official National Bank of Ukraine rate:

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

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/nbu/latest" \
  -H "Authorization: Bearer art_live_your_key"

On paid plans, any historical date or a daily time series:

curl "https://allratestoday.com/api/v1/central-bank/nbu/history?source=USD&target=UAH&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-08-07)

The most recent table as published by National Bank of Ukraine — exactly what the /latest endpoint returns right now. Values are UAH per 1 unit of each currency:

BaseQuoteTypeRate
AED UAH reference 12.1869
AUD UAH reference 31.5218
AZN UAH reference 26.3325
BDT UAH reference 0.36213
CAD UAH reference 31.9881
CHF UAH reference 55.2761
CNY UAH reference 6.63
CZK UAH reference 2.1345
DKK UAH reference 6.9122
DZD UAH reference 0.33691
EGP UAH reference 0.8991
EUR UAH reference 51.6717
GBP UAH reference 60.2773
GEL UAH reference 17.0902
HKD UAH reference 5.7061
HUF UAH reference 0.141959
IDR UAH reference 0.0024979
ILS UAH reference 14.8644
INR UAH reference 0.47014
JPY UAH reference 0.28352
KRW UAH reference 0.031445
KZT UAH reference 0.095522
LBP UAH reference 0.000499
MDL UAH reference 2.5755
MXN UAH reference 2.5949
MYR UAH reference 10.9439
NOK UAH reference 4.6984
NZD UAH reference 26.3294
PLN UAH reference 12.0191
RON UAH reference 9.8343
RSD UAH reference 0.44033
SAR UAH reference 11.9192
SEK UAH reference 4.7276
SGD UAH reference 34.9135
THB UAH reference 1.35398
TND UAH reference 15.2753
TRY UAH reference 0.9405
USD UAH reference 44.7626
VND UAH reference 0.0017056
XAG UAH reference 2763.27
XAU UAH reference 190717.32
XDR UAH reference 61.1699
XPD UAH reference 62069.61
XPT UAH reference 78638.04
ZAR UAH reference 2.7432

Node.js / TypeScript client

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

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

const pair = await getRate('USD', 'UAH', { 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 Ukraine rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Ukraine and beyond typically require the official rate published by National Bank of Ukraine 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 UAH) 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 day's table locally makes a small quota go far.

Frequently asked questions

Is there an API for National Bank of Ukraine exchange rates?

Yes — this one. Official daily UAH rates as clean JSON, latest table on every plan including free.

How often are the rates updated?

National Bank of Ukraine publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-08-07).

Are these the official rates?

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

National Bank of Ukraine rates, one API key

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

Get Free API Key Read the Docs