Microburbs
Suburb - Lifestyle

Nearest beach + hospital

GET/v1/suburbs/{suburb_name}/lifestyle/landmarks5¢ per call

Nearest beach and hospital with straight-line distances (null = none within ~50 km).

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
LifestyleLandmarksfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

nearest_beachobjectmay be null

A named landmark with straight-line distance.

nearest_hospitalobjectmay be null

A named landmark with straight-line distance.

GET/v1/suburbs/{suburb_name}/lifestyle/landmarks
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/lifestyle/landmarks' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "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"
    }
  }
}
Successful Response200
application/json