Microburbs
Live sandbox. Send any request below against one sample suburb and property — no signup needed. For full coverage, create an API key.
Classic docs
Microburbs Property Data API
Property - Context

Street profile — this property's street vs its suburb

GET/v1/properties/{gnaf_id}/street/profile20¢ per call

The property's own street: current median price, 2/4/8-year price forecasts, realised growth, sale/rental turnover, renter share and houses/units on the street — plus the suburb-wide medians to judge it against and the street's rank on 4-year forecast growth.

404s when the street has no forecast row rather than falling back to suburb-wide figures, which would answer a different question.

Price: 20¢ 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
PropertyStreetProfilefields returned to you
gnaf_idstringalways returned

GNAF persistent identifier of the property.

addressstringalways returned

Street address of the property, e.g. '15 Rengor Close'.

suburbstringalways returned

Suburb (SAL) name.

streetstringalways returned

The property's street, suffix-expanded, e.g. 'Rengor Close'.

streets_in_suburbintegeralways returned

Forecastable streets in the suburb (the benchmark population).

profileobjectalways returned

The property's own street — forecast row plus the derived figures the v6 report renders alongside it.

suburb_mediansobjectalways returned

Median across every forecastable street in the suburb — the benchmark the report compares the property's street against.

forecast_rankobjectmay be null

Where the property's street sits on 4-year forecast growth against every other street in the suburb.

GET/v1/properties/{gnaf_id}/street/profile
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/street/profile' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "gnaf_id": "GANSW717662275",
    "address": "15 Rengor Close",
    "suburb": "Belmont North",
    "street": "Rengor Close",
    "streets_in_suburb": 81,
    "profile": {
      "street": "Rengor Cl",
      "title": "Rengor Close",
      "current_price": 1300000,
      "n_sales": 47,
      "target_2y": 1694197.26,
      "annual_2y": 14.2,
      "target_4y": 1979978.08,
      "annual_4y": 11.1,
      "target_8y": 2532146.5,
      "annual_8y": 8.7,
      "past_growth_pct": 2.82,
      "confidence": "Medium",
      "history": [
        {
          "year": 2024,
          "price": 1002844.58,
          "suburb_med": 866399
        },
        {
          "year": 2025,
          "price": 1300000,
          "suburb_med": 948908
        },
        {
          "year": 2026,
          "price": 1300000,
          "suburb_med": 1040068
        }
      ],
      "houses_on_street": 12,
      "units_on_street": 0,
      "median_house_rent_week": 986.5,
      "sale_turnover": "Every 9.2 years (very high turnover)",
      "sale_turnover_years": 9.2,
      "renters_pct": "0%",
      "renters_pct_num": 0
    },
    "suburb_medians": {
      "past_growth_pct": 3.23,
      "annual_4y": 6.3,
      "annual_8y": 4.6,
      "sale_turnover_years": 14.4,
      "rental_turnover_years": 6,
      "renters_pct": 16
    },
    "forecast_rank": {
      "rank": 1,
      "total": 81,
      "percentile_from_top": 1,
      "band": "Top 1%",
      "tercile": "upper third"
    }
  }
}
Successful Response200
application/json