Microburbs
Suburb - Market

Land values

GET/v1/suburbs/{suburb_name}/market/land-values10¢ per call

Suburb land-value medians ($/sqm, lot size, land share of price) + per-mesh-block $/sqm.

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
SuburbLandValuesfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

median_lv_sqmnumbermay be null

Median land value per square metre (AUD).

median_land_sizenumbermay be null

Median lot size (sqm).

median_land_valueintegermay be null

Median total parcel land value (AUD).

median_priceintegermay be null

Median property price (AUD) — denominator of the land share.

land_share_of_pricenumbermay be null

Land value as share of property price (decimal, 0.55 = 55%).

n_parcelsintegermay be null

Parcels behind the suburb medians.

mbsarray of LandValueMbalways returned

Per-mesh-block land values.

GET/v1/suburbs/{suburb_name}/market/land-values
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/land-values' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_level": "suburb",
    "area_name": "Belmont North",
    "land_share_of_price": 0.546,
    "mbs": [
      {
        "lv_sqm": 748.2,
        "mb": "10431160000",
        "n_parcels": 21
      }
    ],
    "median_land_size": 645,
    "median_land_value": 426078,
    "median_lv_sqm": 657,
    "median_price": 780000,
    "n_parcels": 1549
  }
}
Successful Response200
application/json