Suburb - Demographics
Housing tenure breakdown
GET
/v1/suburbs/{suburb_name}/demographics/tenure10¢ per callOwned-outright / mortgaged / renting / public-housing shares — suburb rollup plus the per-microburb downscaled census shares.
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
SuburbTenurefields returned to you
suburbstringalways returnedCanonical SAL name.
owned_outright_pctnumbermay be nullSuburb owned-outright share (%).
mortgaged_pctnumbermay be nullSuburb mortgaged share (%).
renting_pctnumbermay be nullSuburb renting share (%).
public_housing_pctnumbermay be nullSuburb public-housing share (%).
tierstringalways returnedOwner-Occupier (<7% renters) / Mixed (<20%) / Investor-Heavy.
n_microburbsintegeralways returnedMicroburbs with tenure data.
microburbsarray of TenureMbalways returnedPer-microburb shares.
GET
/v1/suburbs/{suburb_name}/demographics/tenurecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/demographics/tenure' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"microburbs": [
{
"mb": "10664530000",
"mortgaged_pct": 41,
"owned_outright_pct": 38.2,
"public_housing_pct": 0.9,
"renting_pct": 17.3,
"street": "Marquis St"
}
],
"mortgaged_pct": 40.1,
"n_microburbs": 71,
"owned_outright_pct": 34.7,
"public_housing_pct": 1.8,
"renting_pct": 20.9,
"suburb": "Belmont North",
"tier": "Mixed"
}
}Successful Response200
application/json
