Suburb - Market
Land values
GET
/v1/suburbs/{suburb_name}/market/land-values10¢ per callSuburb 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_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
SuburbLandValuesfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
median_lv_sqmnumbermay be nullMedian land value per square metre (AUD).
median_land_sizenumbermay be nullMedian lot size (sqm).
median_land_valueintegermay be nullMedian total parcel land value (AUD).
median_priceintegermay be nullMedian property price (AUD) — denominator of the land share.
land_share_of_pricenumbermay be nullLand value as share of property price (decimal, 0.55 = 55%).
n_parcelsintegermay be nullParcels behind the suburb medians.
mbsarray of LandValueMbalways returnedPer-mesh-block land values.
GET
/v1/suburbs/{suburb_name}/market/land-valuescURL
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
