Get unemployment rate by state

Returns the latest unemployment rate for NSW, VIC, QLD, SA, WA, TAS, ACT, and NT in one call.

Steps

  1. 1Call /v1/labour/by-state.
  2. 2Iterate the states array.

Code

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

Watch out for

  • State series are noisier than national. The 3-month moving average is more reliable.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key