Czech National Bank Exchange Rate API

Official Czech National Bank rates for 10 Sept 2026: 1 USD = 20.876 CZK, 1 EUR = 24.25 CZK. All 30 currencies published, history back to 2016. Free JSON API for tax, audits, and compliant invoicing.

Czech Republic flagCzech National Bank publishes official daily exchange rates — 30 currencies against the CZK — and this API serves them as JSON, with history back to 2016. The latest table is on every plan. Get your API key.

About Czech National Bank

The Czech National Bank declares its koruna exchange rate fixing each business day at 14:30 Prague time for about 30 currencies — the rate Czech law prescribes for accounting and tax conversions.

Quick start

One request for the pair you need — EUR to CZK at the official Czech National Bank rate:

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

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/cnb/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/cnb/history?source=EUR&target=CZK&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-09-10)

The most recent table as published by Czech National Bank — exactly what the /latest endpoint returns right now. Values are CZK 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
AUD CZK reference 15.002
BRL CZK reference 4.077
CAD CZK reference 15.112
CHF CZK reference 25.707
CNY CZK reference 3.113
DKK CZK reference 3.244
EUR CZK reference 24.25
GBP CZK reference 28.226
HKD CZK reference 2.662
HUF CZK reference 0.06649
IDR CZK reference 0.001191
ILS CZK reference 6.891
INR CZK reference 0.21873
ISK CZK reference 0.17321
JPY CZK reference 0.1353
KRW CZK reference 0.015529999999999999
MXN CZK reference 1.232
MYR CZK reference 5.135
NOK CZK reference 2.254
NZD CZK reference 12.163
PHP CZK reference 0.33364
PLN CZK reference 5.612
RON CZK reference 4.616
SEK CZK reference 2.165
SGD CZK reference 16.484
THB CZK reference 0.63261
TRY CZK reference 0.43084000000000006
USD CZK reference 20.876
XDR CZK reference 28.682
ZAR CZK reference 1.294

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — czech-national-bank-exchange-rate:

npm install czech-national-bank-exchange-rate
import { getRate } from 'czech-national-bank-exchange-rate';

const pair = await getRate('EUR', 'CZK', { 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: czech-national-bank-exchange-rate documentation.

Why use the official Czech National Bank rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Czech Republic and beyond typically require the official rate published by Czech National Bank 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 CZK) 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 Czech National Bank exchange rates via an API?

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

When do new rates appear here?

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

Are these the official rates?

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

Czech National Bank rates, one API key

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

Get Free API Key Read the Docs