National Bank of Ukraine Exchange Rate API

Official National Bank of Ukraine rates for 8 Sept 2026: 1 USD = 44.295 UAH, 1 EUR = 51.484 UAH. All 45 currencies published, history back to 1996. Free JSON API for tax, audits, and compliant invoicing.

Ukraine flagNational Bank of Ukraine publishes official daily exchange rates — 45 currencies against the UAH — and this API serves them as JSON, with history back to 1996. The latest table is 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 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-09-08)

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:

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 UAH reference 12.0598
AUD UAH reference 31.9574
AZN UAH reference 26.0562
BDT UAH reference 0.36077
CAD UAH reference 32.0499
CHF UAH reference 54.75
CNY UAH reference 6.6013
CZK UAH reference 2.1277
DKK UAH reference 6.888
DZD UAH reference 0.33283
EGP UAH reference 0.8699
EUR UAH reference 51.4842
GBP UAH reference 59.9464
GEL UAH reference 16.9585
HKD UAH reference 5.6497
HUF UAH reference 0.141746
IDR UAH reference 0.0025112
ILS UAH reference 14.7072
INR UAH reference 0.46878
JPY UAH reference 0.28631
KRW UAH reference 0.032862
KZT UAH reference 0.097557
LBP UAH reference 0.000494
MDL UAH reference 2.5659
MXN UAH reference 2.619
MYR UAH reference 10.9455
NOK UAH reference 4.7767
NZD UAH reference 26.028
PLN UAH reference 11.9441
RON UAH reference 9.8034
RSD UAH reference 0.43868
SAR UAH reference 11.7953
SEK UAH reference 4.6118
SGD UAH reference 34.9792
THB UAH reference 1.34667
TND UAH reference 15.2326
TRY UAH reference 0.9146
USD UAH reference 44.2955
VND UAH reference 0.0017007
XAG UAH reference 2901.71
XAU UAH reference 194301.86
XDR UAH reference 60.809
XPD UAH reference 61575.17
XPT UAH reference 80440.94
ZAR UAH reference 2.7697

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.

Full reference — installation, all four functions, response shapes, error codes: nbu-exchange-rate documentation.

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.

If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via UAH) and marks it "derived": true — published and computed values are never silently mixed.

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 National Bank of Ukraine exchange rates via an API?

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

When do new rates appear here?

Once per business day, per National Bank of Ukraine's own schedule; ingestion follows within the hour (latest table: 2026-09-08).

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