Reserve Bank of Zimbabwe Exchange Rate API

Official Reserve Bank of Zimbabwe rates for 9 Sept 2026: 1 USD = 26.023 ZWG, 1 EUR = 30.276 ZWG. All 34 currencies published, history back to 2024. Free JSON API for tax, audits, and compliant invoicing.

Zimbabwe flagReserve Bank of Zimbabwe publishes official daily exchange rates — 34 currencies against the ZWG — and this API serves them as JSON, with history back to 2024. The latest table is on every plan. Get your API key.

About Reserve Bank of Zimbabwe

The Reserve Bank of Zimbabwe publishes the interbank exchange rate for the Zimbabwe Gold (ZiG) each business morning: bid, ask and mid rates in ZiG per unit for the US dollar, the rand and some 30 other currencies, plus gold. The ZiG replaced the Zimbabwe dollar in April 2024 and is managed against the bank's gold and foreign-currency reserves, and the RBZ interbank mid-rate is the official reference Zimbabwean banks, customs and the revenue authority use; our archive starts on the currency's first day, 8 April 2024.

Quick start

One request for the pair you need — USD to ZWG at the official Reserve Bank of Zimbabwe rate:

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

Or the bank's full published table:

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

Latest published rates (2026-09-09)

The most recent table as published by Reserve Bank of Zimbabwe — exactly what the /latest endpoint returns right now. Values are ZWG 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
AFN ZWG buy 2.3433
AFN ZWG middle 2.4073
AFN ZWG sell 2.4712
ARS ZWG buy 55.2487
ARS ZWG middle 56.675
ARS ZWG sell 58.1013
AUD ZWG buy 18.8149
AUD ZWG middle 19.3001
AUD ZWG sell 19.7853
BRL ZWG buy 0.186
BRL ZWG middle 0.1908
BRL ZWG sell 0.1955
BWP ZWG buy 1.8424
BWP ZWG middle 2.0018
BWP ZWG sell 2.1612
CHF ZWG buy 32.1834
CHF ZWG middle 33.0149
CHF ZWG sell 33.8464
CNY ZWG buy 0.2451
CNY ZWG middle 0.2514
CNY ZWG sell 0.2577
DKK ZWG buy 0.2348
DKK ZWG middle 0.2408
DKK ZWG sell 0.2468
EGP ZWG buy 1.8634
EGP ZWG middle 1.9131
EGP ZWG sell 1.9628
ETB ZWG buy 5.8687
ETB ZWG middle 6.0384
ETB ZWG sell 6.2081
EUR ZWG buy 30.2757
EUR ZWG middle 31.0534
EUR ZWG sell 31.8311
GBP ZWG buy 35.2644
GBP ZWG middle 36.1728
GBP ZWG sell 37.0811
HKD ZWG buy 0.2832
HKD ZWG middle 0.2923
HKD ZWG sell 0.3013
INR ZWG buy 3.4778
INR ZWG middle 3.5672
INR ZWG sell 3.6565
JPY ZWG buy 5.6045
JPY ZWG middle 5.7484
JPY ZWG sell 5.8923
KES ZWG buy 4.7262
KES ZWG middle 4.8532
KES ZWG sell 4.9801
LSL ZWG buy 0.5845
LSL ZWG middle 0.5996
LSL ZWG sell 0.6146
MUR ZWG buy 1.7062
MUR ZWG middle 1.7557
MUR ZWG sell 1.8052
MWK ZWG buy 62.7609
MWK ZWG middle 65.0101
MWK ZWG sell 67.2592
MYR ZWG buy 0.1486
MYR ZWG middle 0.1525
MYR ZWG sell 0.1564
MZN ZWG buy 2.3119
MZN ZWG middle 2.3846
MZN ZWG sell 2.4573
NOK ZWG buy 0.3367
NOK ZWG middle 0.3454
NOK ZWG sell 0.3541
NZD ZWG buy 15.2393
NZD ZWG middle 15.6328
NZD ZWG sell 16.0263
RUB ZWG buy 3.1392
RUB ZWG middle 3.2201
RUB ZWG sell 3.301
SEK ZWG buy 0.3501
SEK ZWG middle 0.3591
SEK ZWG sell 0.3681
SZL ZWG buy 0.5845
SZL ZWG middle 0.5996
SZL ZWG sell 0.6146
THB ZWG buy 1.2003
THB ZWG middle 1.2319
THB ZWG sell 1.2634
TZS ZWG buy 96.2786
TZS ZWG middle 99.3238
TZS ZWG sell 102.369
USD ZWG buy 26.0235
USD ZWG middle 26.6908
USD ZWG sell 27.3581
XAF ZWG buy 20.6074
XAF ZWG middle 21.5543
XAF ZWG sell 22.5012
XAU ZWG buy 114126.8399
XAU ZWG middle 117064.2473
XAU ZWG sell 120001.6547
XDR ZWG buy 36.6376
XDR ZWG middle 36.6376
XDR ZWG sell 36.6376
ZAR ZWG buy 0.5845
ZAR ZWG middle 0.5996
ZAR ZWG sell 0.6146
ZMW ZWG buy 0.7018
ZMW ZWG middle 0.7208
ZMW ZWG sell 0.7397

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — reserve-bank-of-zimbabwe-exchange-rate:

npm install reserve-bank-of-zimbabwe-exchange-rate
import { getRate } from 'reserve-bank-of-zimbabwe-exchange-rate';

const pair = await getRate('USD', 'ZWG', { 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: reserve-bank-of-zimbabwe-exchange-rate documentation.

Why use the official Reserve Bank of Zimbabwe rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Zimbabwe and beyond typically require the official rate published by Reserve Bank of Zimbabwe 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.

Pairs the bank doesn't print directly are resolved from its table (inverse or cross via ZWG) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.

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 Reserve Bank of Zimbabwe exchange rates via an API?

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

When do new rates appear here?

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

Are these the official rates?

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

Reserve Bank of Zimbabwe rates, one API key

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

Get Free API Key Read the Docs