Track every RBA Board decision

Full history of cash rate changes with decision direction and statement URL.

Steps

  1. 1Call /v1/rba/decisions.
  2. 2Iterate the decisions array.

Code

cURL
curl https://api.ausdata.io/v1/rba/decisions \
  -H "Authorization: Bearer YOUR_KEY"
Python
import requests
r = requests.get(
    "https://api.ausdata.io/v1/rba/decisions",
    headers={"Authorization": "Bearer YOUR_KEY"},
)
print(r.json())
JavaScript
const r = await fetch("https://api.ausdata.io/v1/rba/decisions", {
  headers: { Authorization: "Bearer YOUR_KEY" },
});
console.log(await r.json());

Watch out for

  • Pre-2007 decisions are reconstructed from RBA archives and lack the structured statement link.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key