Suburb - Development
Average council rates
GET
/v1/suburbs/{suburb_name}/development/council-rates5¢ per callAverage 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_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
SuburbCouncilRatesfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb'.
lgastringalways returnedLocal government area the suburb belongs to.
avg_rate_aud_yrintegeralways returnedAverage annual residential rate (AUD per year).
data_sourcestringmay be nullProvenance of the rate figure (e.g. 'NSW_OLG_AVG').
GET
/v1/suburbs/{suburb_name}/development/council-ratescURL
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
