Suburb - Development
Development profile
GET
/v1/suburbs/{suburb_name}/development/profile5¢ per callDwelling-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_namestringrequiredQuery 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 returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb'.
apartment_pctnumbermay be nullApartments as a share of the dwelling stock (%).
avg_lot_m2integermay be nullAverage residential lot size (m²).
GET
/v1/suburbs/{suburb_name}/development/profilecURL
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
