Suburb - Market
Comparable suburbs
GET
/v1/suburbs/{suburb_name}/market/comparable-suburbs10¢ per callSame-SA3 comparable-suburb candidates (canonical SAL names).
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
ComparableSuburbsfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
nintegermay be nullNumber of candidates.
comparable_suburbsarray of stringalways returnedCanonical SAL names in the same SA3.
GET
/v1/suburbs/{suburb_name}/market/comparable-suburbscURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/comparable-suburbs' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"comparable_suburbs": [
"Argenton",
"Belmont (NSW)",
"Belmont South"
],
"n": 49
}
}Successful Response200
application/json
