/v1/dashboard
Full SARB headline board
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/sarb-api/v1/dashboard" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sarb-api/v1/dashboard", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sarb-api/v1/dashboard");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/sarb-api/v1/dashboard",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"bank": "South African Reserve Bank",
"count": 13,
"source": "SARB",
"country": "ZA",
"indicators": [
{
"code": "CPI1000F",
"date": "2026-04-30",
"name": "CPI",
"trend": "up",
"value": 4,
"section": "Inflation rates"
},
{
"code": "PPI1000F",
"date": "2026-04-30",
"name": "PPI",
"trend": "up",
"value": 4.7712,
"section": "Inflation rates"
},
{
"code": "MMRD002A",
"date": "2026-06-11",
"name": "SARB Policy Rate",
"trend": "flat",
"value": 7,
"section": "Interest rates"
},
{
"code": "MMRD000A",
"date": "2026-06-11",
"name": "Prime lending rate",
"trend": "flat",
"value": 10.5,
"section": "Interest rates"
},
{
"code": "MMRD708A",
"date": "2026-06-10",
"name": "8.00% 2030 (R2030) (closing yields)",
"trend": "up",
"value": 8.05,
"section": "Interest rates"
},
{
"code": "MMRD709A",
"date": "2026-06-10",
"name": "6.25% 2036 (R209) (closing yields)",
"trend": "up",
"value": 8.79,
"section": "Interest rates"
},
{
"code": "MMRD851A",
"date": "2026-06-10",
"name": "Sabor",
"trend": "down",
"value": 6.907,
"section": "Interest rates"
},
{
"code": "MMRD855A",
"date": "2026-06-10",
"name": "Zaronia",
"trend": "up",
"value": 6.853,
"section": "Interest rates"
},
{
"code": "EXCX135D",
"date": "2026-06-11",
"name": "Rand per US Dollar",
"trend": "up",
"value": 16.5422,
"section": "Exchange rates"
},
{
"code": "EXCZ001D",
"date": "2026-06-11",
"name": "Rand per British Pound",
"trend": "down",
"value": 22.1211,
"section": "Exchange rates"
},
{
"code": "EXCZ002D",
"date": "2026-06-11",
"name": "Rand per Euro",
"trend": "down",
"value": 19.0897,
"section": "Exchange rates"
},
{
"code": "EXC
…