Government reference data series
Government reference data series
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-03
updated
Provider
afriref.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x1F0409ccD20A2fb497d4DeCeF4E17e9d0688FeA6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"country": "za",
"series": "policy-rate"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"confidence": "primary",
"country": "ZA",
"disclaimer": "Independent service, not affiliated with any government. Verify against the cited official source before legal or financial use.",
"effective_from": "2026-05-29",
"last_confirmed": "2026-09-02",
"last_confirmed_by": "provenance-byte-identity",
"notes": "CORRECTION TO THE COMMISSIONING BRIEF: the common account said SARB 'has been in an easing cycle'. That was true through November 2025 but is NO LONGER the direction of travel — t…",
"series": "policy-rate",
"source": {
"name": "SARB — Statement of the Monetary Policy Committee, 23 July 2026, delivered by Governor Lesetja Kganyago: 'Against this backdrop, the committee decided to keep the policy rate unch…",
"url": "https://www.resbank.co.za/en/home/publications/publication-detail-pages/statements/monetary-policy-statements/2026/july"
},
"stale": false,
"unit": "percent",
"value": 7
},
"type": "json"
}
},
"routeTemplate": "/v1/:country/:series",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"country": {
"description": "ISO country code",
"enum": [
"ao",
"bf",
"bj",
"bw",
"cd",
"cf",
"cg",
"ci",
"cm",
"dz",
"eg",
"et",
"ga",
"gh",
"gq",
"ke",
"ls",
"ma",
"ml",
"mu",
"mz",
"na",
"ne",
"ng",
"rw",
"sn",
"sz",
"td",
"tg",
"tn",
"tz",
"ug",
"za",
"zm"
],
"type": "string"
},
"series": {
"description": "Reference series id",
"enum": [
"policy-rate",
"vat",
"vat-registration-threshold",
"minimum-wage",
"public-holidays",
"cpi",
"corporate-tax",
"withholding-tax",
"statutory-interest",
"income-tax",
"social-contributions",
"fx-reference"
],
"type": "string"
}
},
"required": [
"country",
"series"
],
"type": "object"
},
"queryParams": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://afriref.dev/v1/:country/:series" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://afriref.dev/v1/:country/:series");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://afriref.dev/v1/:country/:series")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15505.json, and this resource appears in /discovery/resources and /discovery/search.