South African Reserve Bank Exchange Rate API
Official South African Reserve Bank rates for 10 Sept 2026: 1 USD = 16.046 ZAR, 1 EUR = 18.676 ZAR. All 23 currencies published, history back to 2000. Free JSON API for tax, audits, and compliant invoicing.
About South African Reserve Bank
The South African Reserve Bank publishes daily weighted-average exchange rates for the rand — computed from the banks' foreign exchange transactions at around 10:30 SAST — covering more than 20 currencies including major African crosses.
- Official website: www.resbank.co.za
- Official rate publication: Selected historical exchange rates
Quick start
One request for the pair you need — USD to ZAR at the official South African Reserve Bank rate:
curl "https://allratestoday.com/api/v1/central-bank/sarb/latest?source=USD&target=ZAR" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/sarb/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/sarb/history?source=USD&target=ZAR&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-09-10)
The most recent table as published by South African Reserve Bank — exactly what the /latest endpoint returns right now. Values are ZAR 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 |
|---|---|---|---|
EUR | ZAR | reference | 18.6759 |
GBP | ZAR | reference | 21.7415 |
USD | ZAR | reference | 16.046 |
ZAR | AUD | reference | 0.0864 |
ZAR | BRL | reference | 0.3181 |
ZAR | BWP | reference | 0.8337 |
ZAR | CAD | reference | 0.086 |
ZAR | CHF | reference | 0.0505 |
ZAR | CNY | reference | 0.4179 |
ZAR | DKK | reference | 0.4003 |
ZAR | HKD | reference | 0.4887 |
ZAR | ILS | reference | 0.1881 |
ZAR | INR | reference | 5.9445 |
ZAR | JPY | reference | 9.5725 |
ZAR | KES | reference | 8.0674 |
ZAR | KRW | reference | 83.6236 |
ZAR | MWK | reference | 108.0649 |
ZAR | NOK | reference | 0.5744 |
ZAR | NZD | reference | 0.1065 |
ZAR | SEK | reference | 0.5978 |
ZAR | THB | reference | 2.05 |
ZAR | TWD | reference | 1.9663 |
ZAR | ZMW | reference | 1.2043 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — sarb-exchange-rate:
npm install sarb-exchange-rate import { getRate } from 'sarb-exchange-rate';
const pair = await getRate('USD', 'ZAR', { 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: sarb-exchange-rate documentation.
Why use the official South African Reserve Bank rate?
Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in South Africa and beyond typically require the official rate published by South African Reserve 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.
Pairs the bank doesn't print directly are resolved from its table (inverse or cross via ZAR) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.
Endpoints
GET /api/v1/central-bank/sarb/latest— latest table or single pair (all plans)GET /api/v1/central-bank/sarb/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/sarb/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/sarb/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
Can I get South African Reserve Bank exchange rates via an API?
Yes — this API serves the bank's official daily ZAR rates as JSON, and the latest table is on every plan, free included.
When do new rates appear here?
Once per business day, per South African Reserve Bank's own schedule; ingestion follows within the hour (latest table: 2026-09-10).
Are these the official rates?
Yes — ingested from South African Reserve Bank's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.
South African Reserve Bank rates, one API key
Latest table on every plan. History back to 2000 on paid plans. No credit card to start.
Get Free API Key Read the Docs