National Bank of Kazakhstan Exchange Rate API
Official National Bank of Kazakhstan rates for 10 Sept 2026: 1 USD = 456.89 KZT, 1 EUR = 531.36 KZT. All 48 currencies published, history back to 2016. Free JSON API for tax, audits, and compliant invoicing.
About National Bank of Kazakhstan
The National Bank of Kazakhstan is the central bank of the largest economy in Central Asia. It sets official tenge exchange rates for around 40 currencies each business day, used for accounting, customs and tax valuation across Kazakhstan.
- Official website: nationalbank.kz
- Official rate publication: Daily official market exchange rates
Quick start
One request for the pair you need — USD to KZT at the official National Bank of Kazakhstan rate:
curl "https://allratestoday.com/api/v1/central-bank/nbk/latest?source=USD&target=KZT" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/nbk/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/nbk/history?source=USD&target=KZT&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-09-10)
Below is the current table from National Bank of Kazakhstan, unmodified — what a call to /latest returns right now, with values KZT per 1 unit of each currency:
Download this table: Excel (.xlsx) CSV (paid plan required)
One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.
Prefer a bulk file? The complete archive of every source is also published as an open dataset: central-bank-exchange-rates on Hugging Face
| Base | Quote | Type | Rate |
|---|---|---|---|
AED | KZT | reference | 124.41 |
AMD | KZT | reference | 1.266 |
AUD | KZT | reference | 329.6 |
AZN | KZT | reference | 269.55 |
BRL | KZT | reference | 89.76 |
BYN | KZT | reference | 149.48 |
CAD | KZT | reference | 331.54 |
CHF | KZT | reference | 564.55 |
CNY | KZT | reference | 68.11 |
CZK | KZT | reference | 21.91 |
DKK | KZT | reference | 71.1 |
EGP | KZT | reference | 8.93 |
EUR | KZT | reference | 531.36 |
GBP | KZT | reference | 618.4 |
GEL | KZT | reference | 177.57 |
HKD | KZT | reference | 58.26 |
HUF | KZT | reference | 1.459 |
IDR | KZT | reference | 0.026109999999999998 |
ILS | KZT | reference | 151.22 |
INR | KZT | reference | 4.8 |
IRR | KZT | reference | 0.000333 |
JPY | KZT | reference | 2.98 |
KGS | KZT | reference | 5.22 |
KRW | KZT | reference | 0.34149999999999997 |
KWD | KZT | reference | 1490.18 |
MDL | KZT | reference | 26.7 |
MNT | KZT | reference | 0.12710000000000002 |
MXN | KZT | reference | 27.03 |
MYR | KZT | reference | 112.31 |
NOK | KZT | reference | 49.62 |
OMR | KZT | reference | 1189.82 |
PKR | KZT | reference | 1.65 |
PLN | KZT | reference | 123.11 |
QAR | KZT | reference | 125.35 |
RON | KZT | reference | 101.16 |
RUB | KZT | reference | 5.32 |
SAR | KZT | reference | 121.68 |
SEK | KZT | reference | 47.63 |
SGD | KZT | reference | 361.29 |
THB | KZT | reference | 13.9 |
TJS | KZT | reference | 49.66 |
TRY | KZT | reference | 9.43 |
UAH | KZT | reference | 10.23 |
USD | KZT | reference | 456.89 |
UZS | KZT | reference | 0.0387 |
VND | KZT | reference | 0.01764 |
XDR | KZT | reference | 627.16 |
ZAR | KZT | reference | 28.47 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — nbk-exchange-rate:
npm install nbk-exchange-rate import { getRate } from 'nbk-exchange-rate';
const pair = await getRate('USD', 'KZT', { 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: nbk-exchange-rate documentation.
Why use the official National Bank of Kazakhstan rate?
When an auditor or tax office in Kazakhstan asks which rate you used, "the KZT mid-market rate at 14:32" is not an answer — the official rate published by National Bank of Kazakhstan for that date is. This API returns exactly those published figures, stamped with the bank's own rate_date; on weekends and holidays the most recent published table is returned, as compliance rules expect.
If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via KZT) and marks it "derived": true — published and computed values are never silently mixed.
Endpoints
GET /api/v1/central-bank/nbk/latest— latest table or single pair (all plans)GET /api/v1/central-bank/nbk/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/nbk/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/nbk/availability— publication calendar: the dates the bank actually published (all plans)
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
Is there an API for National Bank of Kazakhstan exchange rates?
Yes — this one. Official daily KZT rates as clean JSON, latest table on every plan including free.
How often does National Bank of Kazakhstan update its rates?
New tables land once per business day — the API picks each one up shortly after National Bank of Kazakhstan publishes it (latest: 2026-09-10).
Is this the official published table?
Yes — the rows are National Bank of Kazakhstan's published figures, untouched, with the original publication date attached. Pairs the bank didn't print are computed and flagged derived.
National Bank of Kazakhstan 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