Microburbs
Suburb - Market

Strata levies

GET/v1/suburbs/{suburb_name}/market/strata-levies5¢ per call

Median estimated annual strata levy for the suburb.

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

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

median_levy_annualnumbermay be null

Median estimated annual strata levy (AUD/yr).

n_propertiesintegermay be null

Strata properties behind the median.

GET/v1/suburbs/{suburb_name}/market/strata-levies
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/strata-levies' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_level": "suburb",
    "area_name": "Belmont North",
    "median_levy_annual": 2291.4,
    "n_properties": 4
  }
}
Successful Response200
application/json