Microburbs
Property - Valuation

Council land values — 5-year series

GET/v1/properties/{gnaf_id}/valuation/land-values15¢ per call

Council land valuations for the parcel — val_2021..val_2025 series with YoY change and $/sqm, plus lot area and zoning description.

Price: 15¢ per call.

Authorization

Request

The only values you send. Fields under Responses below are what comes back — you never pass those.

Path parameters

gnaf_idstringrequired

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
PropertyLandValuesfields returned to you
land_valuenumbermay be null

Latest council land value (AUD).

area_sqmnumbermay be null

Lot area (square metres).

zone_descstringmay be null

Zoning description (e.g. 'R2 - Low Density Residential').

historyarray of LandValueYearalways returned

Per-year valuation series, oldest first.

GET/v1/properties/{gnaf_id}/valuation/land-values
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/valuation/land-values' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_sqm": 714.5,
    "history": [
      {
        "price_per_sqm": 2449.27,
        "value": 1750000,
        "year": 2021
      },
      {
        "price_per_sqm": 3177.05,
        "value": 2270000,
        "year": 2022,
        "yoy_pct": 29.71
      },
      {
        "price_per_sqm": 2883.14,
        "value": 2060000,
        "year": 2023,
        "yoy_pct": -9.25
      },
      {
        "price_per_sqm": 3177.05,
        "value": 2270000,
        "year": 2024,
        "yoy_pct": 10.19
      },
      {
        "price_per_sqm": 3177.05,
        "value": 2270000,
        "year": 2025,
        "yoy_pct": 0
      }
    ],
    "land_value": 2270000,
    "zone_desc": "C4 - Environmental Living"
  }
}
Successful Response200
application/json