Monitor the Australian monthly CPI indicator

ABS publishes a monthly CPI indicator alongside the quarterly print. This endpoint returns the latest.

Steps

  1. 1Call /v1/abs/cpi-monthly.
  2. 2Read indicator_value.

Code

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

Watch out for

  • The monthly is not a full reweighting. Treat it as directional, not a replacement for the quarterly.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key