ABS Wage Price Index as a JSON REST API
Quarterly Australian Wage Price Index as JSON. Year-on-year wage growth by industry and sector, national and by state. Sourced from ABS 6345.0 and refreshed each quarter. Pair with CPI to compute real wages without touching SDMX or the WPI workbook.
Endpoint
GEThttps://api.ausdata.io/v1/data/abs/WPI
Sample request
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.ausdata.io/v1/data/abs/WPI?sector=Private&limit=8"Sample response
JSON
{
"data": [
{
"period": "2025-Q1",
"sector": "Private",
"industry": "Total",
"wpi_yoy_pct": 3.6
}
],
"meta": {
"endpoint": "/v1/data/abs/WPI",
"source": {
"name": "ABS",
"url": "https://www.abs.gov.au/statistics/economy/price-indexes-and-inflation/wage-price-index-australia",
"attribution": "(c) ABS, CC-BY 4.0"
},
"retrieved_at": "<ISO timestamp>"
}
}Response fields
| Field | Type | Description |
|---|---|---|
| period | string | Reference quarter |
| sector | string | Private, Public, or All |
| industry | string | ANZSIC industry or Total |
| wpi_yoy_pct | number | Year-on-year wage growth, percent |
Frequently asked questions
- How do I query the Wage Price Index dataset via API?
- Send a GET request to https://api.ausdata.io/v1/data/abs/WPI with an Authorization: Bearer <your-key> header. The response is JSON with a data array and a meta block containing the source and retrieval timestamp. Get a free key at ausdata.io with 500 calls per month.
- How often is the Wage Price Index data updated?
- The Wage Price Index dataset is refreshed quarterly from Australian Bureau of Statistics (ABS). The meta.retrieved_at field on every response tells you exactly when the underlying data was last pulled.
- Is there a free tier for the ABS Wage Price Index API?
- Yes. ausdata.io offers a free tier of 500 calls per month across every endpoint, including Wage Price Index. No credit card required. Paid plans start at $29 AUD per month for 10,000 calls.
- What format does the Wage Price Index API return?
- JSON, with a consistent envelope: a data field carrying the rows or object, and a meta field with the source agency, source URL, attribution string, and retrieved_at timestamp. UTF-8, ISO 8601 dates, CC-BY attribution included on every response.
Start querying ABS Wage Price Index
500 free calls per month. No credit card.
Get a free key