resbank.co.za APIresbank.co.za ↗
Retrieve live and historical SARB financial data: prime rate, repo rate, SABOR, ZARONIA, CPI, PPI, ZAR exchange rates, and gold prices via 12 endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/925c9a29-048a-4c99-90a2-3e7a8de06ae4/get_prime_rate' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the most recent prime lending rate, including the value, date, timeseries code, and formatted percentage string.
No input parameters required.
{
"type": "object",
"fields": {
"date": "string — ISO date (YYYY-MM-DD)",
"name": "string — rate name",
"value": "number — rate as a percentage",
"formatted_value": "string — percentage with % symbol",
"timeseries_code": "string — SARB timeseries identifier"
},
"sample": {
"data": {
"date": "2026-05-14",
"name": "Prime lending rate",
"value": 10.25,
"formatted_value": "10.25%",
"timeseries_code": "MMRD000A"
},
"status": "success"
}
}About the resbank.co.za API
The resbank.co.za API provides 12 endpoints covering South Africa's key monetary and economic indicators sourced from the South African Reserve Bank. You can fetch the current prime lending rate via get_prime_rate — returning the value, ISO date, and SARB timeseries code — as well as historical rate series, ZAR exchange rates against major currencies, inflation metrics, overnight benchmark rates, and London gold prices in both USD and ZAR.
Interest Rate Endpoints
get_prime_rate and get_repo_rate each return a single current observation with five fields: date (ISO YYYY-MM-DD), name, value (numeric percentage), formatted_value (with % symbol), and timeseries_code (the SARB's internal series identifier). Their history counterparts — get_prime_rate_history and get_repo_rate_history — return a data array ordered newest-first, where each element carries Period (ISO datetime), Timeseries, Description, Value, FormatNumber, and FormatDate. These series are useful for tracking rate cycle timing or building yield-curve models against other data sources.
Benchmark Overnight Rates and Inflation
get_sabor_rate returns the South African Benchmark Overnight Rate and get_zaronia_rate returns the ZARONIA (South African Rand Overnight Index Average). Both share the same nine-field schema: Date, Name, Value, UpDown (an integer direction flag of -1, 0, or 1), SectionId, SectionName, TimeseriesCode, FormatDate, and FormatNumber. get_cpi and get_ppi use the same schema to expose headline CPI for all urban areas and the 12-month PPI percentage change respectively.
Exchange Rates and Market Overview
get_exchange_rates returns ZAR spot rates against USD, GBP, EUR, and JPY plus the nominal effective exchange rate index, each object carrying Name, Date, Value, UpDown, TimeseriesCode, and format fields. get_current_market_rates aggregates money market, capital market, exchange rate, and gold price indicators in a single call, with a SectionId and SectionName on each object for grouping. get_selected_historical_rates splits output into two arrays — monthly_indicators and daily_exchange_rates — giving a longer-horizon view of selected rates and effective indices.
Gold Price
get_gold_price returns a data array with the London gold price per fine ounce averaged from the AM and PM fixings, denominated in both USD and ZAR. Each object follows the standard market rate schema with Name, Date, Value, UpDown, SectionId, SectionName, TimeseriesCode, and format fields.
- Displaying live prime and repo rates in a South African mortgage calculator
- Alerting users when SARB policy rate changes using get_repo_rate_history deltas
- Tracking ZAR/USD and ZAR/EUR movements for a currency conversion tool
- Feeding CPI and PPI data into inflation-adjusted return calculations
- Monitoring ZARONIA and SABOR overnight rates for short-term funding models
- Building a gold price dashboard showing USD and ZAR valuations side by side
- Backtesting interest rate strategies using historical prime rate series
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.