Microburbs
Suburb - Demographics

Housing tenure breakdown

GET/v1/suburbs/{suburb_name}/demographics/tenure10¢ per call

Owned-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_namestringrequired

Query 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 returned

Canonical SAL name.

owned_outright_pctnumbermay be null

Suburb owned-outright share (%).

mortgaged_pctnumbermay be null

Suburb mortgaged share (%).

renting_pctnumbermay be null

Suburb renting share (%).

public_housing_pctnumbermay be null

Suburb public-housing share (%).

tierstringalways returned

Owner-Occupier (<7% renters) / Mixed (<20%) / Investor-Heavy.

n_microburbsintegeralways returned

Microburbs with tenure data.

microburbsarray of TenureMbalways returned

Per-microburb shares.

GET/v1/suburbs/{suburb_name}/demographics/tenure
cURL
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