National Bank of Ukraine Exchange Rate API

Official National Bank of Ukraine rates for 14 Sept 2026: 1 USD = 44.548 UAH, 1 EUR = 51.639 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-14)

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.1286
AUD UAH reference 31.9581
AZN UAH reference 26.2087
BDT UAH reference 0.36186
CAD UAH reference 32.1428
CHF UAH reference 54.6511
CNY UAH reference 6.6403
CZK UAH reference 2.1289
DKK UAH reference 6.9084
DZD UAH reference 0.33473
EGP UAH reference 0.8674
EUR UAH reference 51.6386
GBP UAH reference 60.1567
GEL UAH reference 17.0863
HKD UAH reference 5.6806
HUF UAH reference 0.141796
IDR UAH reference 0.0025297
ILS UAH reference 14.6318
INR UAH reference 0.46624
JPY UAH reference 0.28927
KRW UAH reference 0.033187
KZT UAH reference 0.098825
LBP UAH reference 0.000497
MDL UAH reference 2.5765
MXN UAH reference 2.6248
MYR UAH reference 10.9435
NOK UAH reference 4.7897
NZD UAH reference 25.9382
PLN UAH reference 11.9399
RON UAH reference 9.8265
RSD UAH reference 0.44002
SAR UAH reference 11.8622
SEK UAH reference 4.5968
SGD UAH reference 35.1402
THB UAH reference 1.34739
TND UAH reference 15.2736
TRY UAH reference 0.9165
USD UAH reference 44.5483
VND UAH reference 0.0017187
XAG UAH reference 2843.51
XAU UAH reference 192996.69
XDR UAH reference 61.1126
XPD UAH reference 58375.25
XPT UAH reference 79946.65
ZAR UAH reference 2.7576

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

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