Home Documentation Bank Rates Playground Pricing API Status Blog About FAQ Support

Central Bank of Kuwait Exchange Rate API: Official KWD Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

Central Bank of Kuwait publishes an official table of exchange rates once per business day — daily reference rates — covering 10 currencies against the KWD. These are the published central bank rates used for tax filings, customs valuations, audits, and compliant invoicing — not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency cbk-exchange-rate npm package, with history back to 2008.

USD → KWD — official Central Bank of Kuwait reference rate
Weekly observations, Aug '25 – Aug '26 · Kuwaiti dinars per 1 US dollar
0.30500.30600.30700.3080Aug '25Nov '25Feb '26May '26Aug '260.30722025-08-03: 0.3056 KWD2025-08-10: 0.3054 KWD2025-08-17: 0.3053 KWD2025-08-24: 0.3052 KWD2025-08-31: 0.3053 KWD2025-09-07: 0.3050 KWD2025-09-14: 0.3049 KWD2025-09-21: 0.3049 KWD2025-09-28: 0.3051 KWD2025-10-05: 0.3049 KWD2025-10-12: 0.3055 KWD2025-10-19: 0.3053 KWD2025-10-26: 0.3055 KWD2025-11-02: 0.3059 KWD2025-11-09: 0.3059 KWD2025-11-16: 0.3057 KWD2025-11-23: 0.3063 KWD2025-11-30: 0.3059 KWD2025-12-07: 0.3056 KWD2025-12-14: 0.3054 KWD2025-12-21: 0.3056 KWD2025-12-28: 0.3052 KWD2025-12-31: 0.3054 KWD2026-01-04: 0.3054 KWD2026-01-11: 0.3058 KWD2026-01-15: 0.3058 KWD2026-01-25: 0.3053 KWD2026-02-01: 0.3053 KWD2026-02-08: 0.3056 KWD2026-02-15: 0.3051 KWD2026-02-22: 0.3054 KWD2026-03-01: 0.3055 KWD2026-03-08: 0.3061 KWD2026-03-15: 0.3070 KWD2026-03-18: 0.3066 KWD2026-03-29: 0.3070 KWD2026-04-05: 0.3070 KWD2026-04-12: 0.3064 KWD2026-04-19: 0.3064 KWD2026-04-26: 0.3065 KWD2026-05-03: 0.3063 KWD2026-05-10: 0.3061 KWD2026-05-17: 0.3068 KWD2026-05-24: 0.3068 KWD2026-05-25: 0.3067 KWD2026-06-07: 0.3073 KWD2026-06-14: 0.3071 KWD2026-06-21: 0.3075 KWD2026-06-28: 0.3079 KWD2026-07-05: 0.3076 KWD2026-07-12: 0.3078 KWD2026-07-19: 0.3076 KWD2026-07-26: 0.3080 KWD2026-08-02: 0.3071 KWD2026-08-04: 0.3072 KWD
Source: Central Bank of Kuwait published rates · chart data from the AllRatesToday API (/api/v1/central-bank/cbk/history?source=USD&target=KWD).

What the CBK publishes

Why official rates, not market rates

A live mid-market feed answers "what is USD/KWD trading at right now?" — the right tool for checkouts and dashboards. But accountants, auditors, and tax authorities ask a different question: "which rate were you required to use for this date?" That answer comes from the central bank's published table, and it never changes after publication.

The Kuwaiti dinar is among the highest-valued currencies in the world, and the CBK's published rates are the official benchmark for KWD conversion in accounting and regulatory contexts, with history back to 2008. Kuwait's work week runs Sunday to Thursday — rates publish on days many other banks are closed.

Get the latest table (REST)

curl "https://allratestoday.com/api/v1/central-bank/cbk/latest" \
  -H "Authorization: Bearer YOUR_API_KEY"

The response is the bank's most recent published table — every currency, the KWD value, and the publication date:

{
  "bank": "cbk",
  "rate_date": "2026-08-03",
  "base": "KWD",
  "rates": [ { "currency": "USD", "rate": 1.2345, "official": true }, ... ]
}

The latest table is available on every plan, including the free tier (300 requests/month, no credit card). Since the table changes once per business day, caching it locally makes even a small quota go a long way.

The npm SDK

npm install cbk-exchange-rate
import { getRate, getLatestRates } from 'cbk-exchange-rate';

// One pair at the official Central Bank of Kuwait rate
const pair = await getRate('USD', 'KWD', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

// The bank's full published table
const table = await getLatestRates({ apiKey: 'art_live_...' });
console.log(table.rate_date, table.rates.length);

Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.

Historical rates for an invoice date

The most common compliance job: an invoice dated months ago needs the official rate for that date.

import { getRatesForDate, getHistory } from 'cbk-exchange-rate';

// The official table for an invoice date — weekends/holidays return
// the most recent published date, flagged via published_on_requested_date.
const day = await getRatesForDate('2026-06-30', { apiKey: 'art_live_...' });

// Daily series for one pair
const series = await getHistory(
  { source: 'USD', target: 'KWD', from: '2026-01-01' },
  { apiKey: 'art_live_...' }
);

Historical dates and time series need a paid plan; the latest table stays free.

Published vs derived pairs

If the CBK does not print a pair directly, the API resolves it from the bank's table — an inverse, or a cross rate via KWD — and flags it derived: true with the method used. Official and computed values are never silently mixed, which is exactly the distinction an auditor will ask about.

FAQ

Does Central Bank of Kuwait have an official exchange rate API?

Central Bank of Kuwait publishes its official rates on its website, but not always in a developer-friendly form. AllRatesToday serves the bank's published table as clean JSON — 10 currencies, with history back to 2008 — via REST or the cbk-exchange-rate npm package. The latest table is free.

How often do Central Bank of Kuwait rates update?

Once per business day. These are published reference rates, not moving market prices — the table changes when the CBK publishes a new one, and every API response carries the bank's own publication date so you can cite it.

Can I get the Central Bank of Kuwait rate for a past date, like an invoice date?

Yes. The /central-bank/cbk/rates-for-date endpoint returns the official table for any date back to 2008. Weekends and holidays resolve to the most recent published table and are flagged, so your audit trail stays honest. Historical dates require a paid plan; latest rates are free.

Official Central Bank of Kuwait rates, as JSON

The latest table is free — 300 requests/month, no credit card.

Get your free API key

Related Articles