Suburb - Risks
Terrain slope profile
GET
/v1/suburbs/{suburb_name}/risks/slope10¢ per callMedian / 90th-percentile property gradient and share of steep (>10°) properties.
Price: 10¢ 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
SlopeProfilefields returned to you
area_namestringalways returnedCanonical ABS SAL suburb name.
area_levelstringalways returnedAlways 'suburb'.
n_propertiesintegeralways returnedProperties with a terrain sample.
median_slope_degnumbermay be nullMedian property gradient (degrees).
p90_slope_degnumbermay be null90th-percentile property gradient (degrees).
steep_pctnumbermay be nullShare of properties steeper than the threshold (%).
steep_threshold_degnumberalways returnedGradient threshold used for steep_pct (degrees).
GET
/v1/suburbs/{suburb_name}/risks/slopecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/risks/slope' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_name": "Belmont North",
"area_level": "suburb",
"n_properties": 2727,
"median_slope_deg": 4.43,
"p90_slope_deg": 8.29,
"steep_pct": 4.44,
"steep_threshold_deg": 10
}
}Successful Response200
application/json
