Suburb - Market
Investor concentration
GET
/v1/suburbs/{suburb_name}/market/investor-concentration10¢ per callRental (investor) share per mesh block, with a suburb-wide rollup.
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
InvestorConcentrationfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
rental_share_pctnumbermay be nullSuburb rollup: rentals / total dwellings across all MBs (%).
total_propertiesintegermay be nullTotal occupied dwellings across the suburb's MBs.
rental_propertiesintegermay be nullTotal rental dwellings across the suburb's MBs.
mbsarray of InvestorConcentrationMbalways returnedPer-mesh-block breakdown.
GET
/v1/suburbs/{suburb_name}/market/investor-concentrationcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/investor-concentration' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"mbs": [
{
"avg_annual_growth": 0.0705,
"mb": "11205845900",
"pct_investment": 28.95,
"rental_properties": 11,
"total_properties": 38
}
],
"rental_properties": 966,
"rental_share_pct": 27.4,
"total_properties": 3521
}
}Successful Response200
application/json
