finance.foundation / Countries / South Africa
Jurisdiction · ZA · ZAR
South Africa
- ISO code
- ZA
- Currency
- ZAR
- Monetary authority
- South African Reserve Bank
- GDP
- $0.43tn (approx., seed-0.7 · marketcap-1 · 2026-08-30 — not covered by the World Bank)
Current readings · refreshed every 3 hours
7% South Africa repo rate · 2026-07-01 · BIS
These are South Africa’s own readings, each on the observation date shown. They are a different kind of figure from the World Bank series above, which are annual and only move when the World Bank publishes.
Approximate reference values from public sources · seed-0.7 · marketcap-1 · 2026-08-30 · not real-time. See data & methodology.
# this page as data
GET https://finance.foundation/api/v1/countries/south-africa
JSONCSV No key, CORS enabled — paste any of these straight into a notebook.
Code to fetch it
curl
curl -s https://finance.foundation/api/v1/countries/south-africa
Python
import requests
r = requests.get("https://finance.foundation/api/v1/countries/south-africa", timeout=30)
r.raise_for_status()
data = r.json()
JavaScript
const r = await fetch("https://finance.foundation/api/v1/countries/south-africa");
if (!r.ok) throw new Error(r.status);
const data = await r.json();
pandas
import pandas as pd
df = pd.read_csv("https://finance.foundation/api/v1/countries/south-africa.csv")