Get Australian private credit growth

RBA monthly aggregate of private sector credit. Owner-occupier, investor, and business splits.

Steps

  1. 1Call /v1/rba/private-credit.
  2. 2Read total, housing, business.

Code

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

Watch out for

  • Series breaks in 2019 due to APRA reclassifications. RBA publishes the bridge factors.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key