Area Statistics
Search area-statistics fields
GET
/v1/area-stats/fields0¢ per callDiscover which statistical fields exist. Free (0c). Fuzzy, token-based
match — 'median rent' finds Median_rent_weekly. ~17k fields available.
Price: 0¢ per call.
17,000+
statistical fields, one query
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:
searching…
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 field names/codes (e.g. 'median rent'). Omit to list.
limitinteger1–500optionalMax fields to return.
Responses
Successful Response
application/json
AreaStatFieldsResponsefields returned to you
countintegeralways returnedNumber of fields returned.
fieldsarray of AreaStatFieldalways returnedMatching fields, best match first.
GET
/v1/area-stats/fieldscURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/area-stats/fields' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"count": 1,
"fields": [
{
"field_code": "Median_rent_weekly",
"field_name": "Median rent weekly",
"label": "Median rent ($/weekly)",
"topic": "Selected Medians and Averages"
}
]
}
}Successful Response200
application/json
