Nearest beach + hospital
/v1/suburbs/{suburb_name}/lifestyle/landmarks5¢ per callNearest beach and hospital with straight-line distances (null = none within ~50 km).
Exact suburb identifier required. Exact ABS Suburb and Locality (SAL) name, e.g. Burwood (NSW) — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call GET /v1/geocode/suburb?q=<text>, then use the exact data[].area_name it returns. Suburb data endpoints do not guess a state or typo-correct names.
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_namestringrequiredExact ABS Suburb and Locality (SAL) name, e.g. `Burwood (NSW)` — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call `GET /v1/geocode/suburb?q=<text>`, then use the exact `data[].area_name` it returns. Suburb data endpoints do not guess a state or typo-correct names.
Query parameters
Responses
Successful Response
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
nearest_beachobjectmay be nullA named landmark with straight-line distance.
nearest_hospitalobjectmay be nullA named landmark with straight-line distance.
/v1/suburbs/{suburb_name}/lifestyle/landmarkscurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/lifestyle/landmarks' \
--header 'Authorization: Bearer test'{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"nearest_beach": {
"dist_km": 1.5,
"name": "Redhead Beach, NSW"
},
"nearest_hospital": {
"dist_km": 1.4,
"name": "Narla Village"
}
}
}