Microburbs
Suburb - Development

Development profile

GET/v1/suburbs/{suburb_name}/development/profile5¢ per call

Dwelling-mix scalars — apartment share and average lot size.

Price: 5¢ 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
SuburbDevelopmentProfilefields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb'.

apartment_pctnumbermay be null

Apartments as a share of the dwelling stock (%).

avg_lot_m2integermay be null

Average residential lot size (m²).

GET/v1/suburbs/{suburb_name}/development/profile
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/profile' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_name": "Belmont North",
    "area_level": "suburb",
    "apartment_pct": 1.2,
    "avg_lot_m2": 758
  }
}
Successful Response200
application/json