Get the Australian construction cost index

ABS Producer Price Index for residential construction, quarterly.

Steps

  1. 1Call the endpoint.
  2. 2Read input_cost_index.

Code

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

Watch out for

  • The index excludes land. Use it for build cost, not total project cost.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key