Search area-statistics fields
/v1/area-stats/fields0¢ per callDiscover which statistical fields exist. Free (0c). Fuzzy, token-based
matching covers table topics and clean column labels as well as terse field
codes. Common natural-language plurals and Census synonyms are handled, so
the verbatim query=couples with children discovers the exact 2021 ABS
family-composition count fields rather than substituting the broader
census_family_households metric. Use the returned field code(s) with the
priced /area-stats/SAL/{suburb}/values route. ~17k fields available.
Price: 0¢ per call.
Every census statistic — from median rent to how many people cycle to work — for every Australian geography: suburb, postcode, LGA, SA1–SA4, state and more. Search the whole catalogue live:
Free to search. Copy a field_code into the fields parameter below to fetch its value for any region.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Query parameters
querystringoptionalFuzzy search over ABS field names/codes, table topics and column labels (e.g. 'total population', 'couple family children', 'tenure owned outright', or 'median rent'). Omit to list.
limitinteger1–500optionalMax fields to return.
Responses
Successful Response
countintegeralways returnedNumber of fields returned.
fieldsarray of AreaStatFieldalways returnedMatching fields, best match first.
/v1/area-stats/fieldscurl --request GET \
--url 'https://api.microburbs.com.au/v1/area-stats/fields' \
--header 'Authorization: Bearer test'{
"data": {
"count": 1,
"fields": [
{
"field_code": "Median_rent_weekly",
"field_name": "Median rent weekly",
"label": "Median rent ($/weekly)",
"topic": "Selected Medians and Averages"
}
]
}
}