Microburbs
Suburb - Development

Average council rates

GET/v1/suburbs/{suburb_name}/development/council-rates5¢ per call

Average annual residential council rate for the suburb's LGA.

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

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb'.

lgastringalways returned

Local government area the suburb belongs to.

avg_rate_aud_yrintegeralways returned

Average annual residential rate (AUD per year).

data_sourcestringmay be null

Provenance of the rate figure (e.g. 'NSW_OLG_AVG').

GET/v1/suburbs/{suburb_name}/development/council-rates
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/council-rates' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_name": "Belmont North",
    "area_level": "suburb",
    "lga": "Lake Macquarie",
    "avg_rate_aud_yr": 1584,
    "data_source": "NSW_OLG_AVG"
  }
}
Successful Response200
application/json