Microburbs
Suburb - Demographics

All demographics — bundle

GET/v1/suburbs/{suburb_name}/demographics/all6¢ per call

Price: 6¢ per call.

Authorization

Request

The only values you send. Fields under Responses below are what comes back — you never pass those.

Path parameters

suburb_namestringrequired

Query parameters

None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.

Responses

Successful Response

application/json
DemographicsAllfields returned to you
agearray of DemographicRowmay be null
incomearray of DemographicRowmay be null
GET/v1/suburbs/{suburb_name}/demographics/all
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/demographics/all' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "age": [
      {
        "age_bracket": "0-4",
        "area_level": "suburb",
        "area_name": "Belmont North",
        "gender": "females",
        "proportion": 0.0272
      }
    ],
    "income": [
      {
        "age_bracket": "0-4",
        "area_level": "suburb",
        "area_name": "Belmont North",
        "gender": "females",
        "proportion": 0.0272
      }
    ]
  }
}
Successful Response200
application/json