ABS Unemployment Rate as a JSON REST API
Monthly Australian unemployment rate, participation rate, and employment-to-population ratio as JSON. Seasonally adjusted and trend series, national and by state. Sourced from ABS 6202.0 Labour Force and refreshed each release. Headline unemployment without scraping the ABS release page.
Endpoint
GEThttps://api.ausdata.io/v1/data/abs/LABOUR_FORCE
Sample request
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.ausdata.io/v1/data/abs/LABOUR_FORCE?region=AUS&limit=12"Sample response
JSON
{
"data": [
{
"period": "2025-04",
"region": "AUS",
"unemployment_rate_pct": 4.1,
"participation_rate_pct": 66.7,
"employment_pop_ratio_pct": 64
}
],
"meta": {
"endpoint": "/v1/data/abs/LABOUR_FORCE",
"source": {
"name": "ABS",
"url": "https://www.abs.gov.au/statistics/labour/employment-and-unemployment/labour-force-australia",
"attribution": "(c) ABS, CC-BY 4.0"
},
"retrieved_at": "<ISO timestamp>"
}
}Response fields
| Field | Type | Description |
|---|---|---|
| period | string (YYYY-MM) | Reference month |
| region | string | AUS or state code |
| unemployment_rate_pct | number | Seasonally adjusted unemployment rate |
| participation_rate_pct | number | Labour force participation rate |
| employment_pop_ratio_pct | number | Employment-to-population ratio |
Frequently asked questions
- How do I query the Unemployment Rate dataset via API?
- Send a GET request to https://api.ausdata.io/v1/data/abs/LABOUR_FORCE 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 Unemployment Rate data updated?
- The Unemployment Rate dataset is refreshed monthly 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 Unemployment Rate API?
- Yes. ausdata.io offers a free tier of 500 calls per month across every endpoint, including Unemployment Rate. No credit card required. Paid plans start at $29 AUD per month for 10,000 calls.
- What format does the Unemployment Rate 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 Unemployment Rate
500 free calls per month. No credit card.
Get a free key