National Bank of Ukraine Exchange Rates Today & Official API

Official National Bank of Ukraine rates for 18 Sept 2026: 1 USD = 44.665 UAH, 1 EUR = 51.237 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

You need a free API key to run these. Register in under a minute — no card required.

Get a free API key Already registered? Copy your key from the dashboard.

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-18)

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.1603
AUD UAH reference 31.7477
AZN UAH reference 26.2773
BDT UAH reference 0.36356
CAD UAH reference 31.9059
CHF UAH reference 54.0965
CNY UAH reference 6.6598
CZK UAH reference 2.1069
DKK UAH reference 6.8543
DZD UAH reference 0.33402
EGP UAH reference 0.8564
EUR UAH reference 51.2372
GBP UAH reference 59.7066
GEL UAH reference 17.1458
HKD UAH reference 5.6931
HUF UAH reference 0.140974
IDR UAH reference 0.002516
ILS UAH reference 14.7029
INR UAH reference 0.46556
JPY UAH reference 0.28654
KRW UAH reference 0.032255
KZT UAH reference 0.100058
LBP UAH reference 0.000498
MDL UAH reference 2.5486
MXN UAH reference 2.5942
MYR UAH reference 10.8963
NOK UAH reference 4.734
NZD UAH reference 25.6095
PLN UAH reference 11.7506
RON UAH reference 9.736
RSD UAH reference 0.4366
SAR UAH reference 11.8898
SEK UAH reference 4.5452
SGD UAH reference 35.0024
THB UAH reference 1.33995
TND UAH reference 15.2085
TRY UAH reference 0.9176
USD UAH reference 44.6648
VND UAH reference 0.0017178
XAG UAH reference 2882.95
XAU UAH reference 194074.54
XDR UAH reference 60.9782
XPD UAH reference 57829.79
XPT UAH reference 79925.96
ZAR UAH reference 2.7436

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-18).

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