Microburbs
Suburb - Market

Repeat sales

GET/v1/suburbs/{suburb_name}/market/repeat-sales15¢ per call

Realised resale growth — summary + individual buy/sell pairs (max 500).

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

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

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

nintegermay be null

Repeat-sale pairs observed in the suburb.

n_lossintegermay be null

Pairs that resold at a loss.

avg_annual_growth_pctnumbermay be null

Average realised annual growth across pairs (%).

pointsarray of RepeatSalePointalways returned

Individual buy/sell pairs (capped at 500).

GET/v1/suburbs/{suburb_name}/market/repeat-sales
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/repeat-sales' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_level": "suburb",
    "area_name": "Belmont North",
    "avg_annual_growth_pct": 9.01,
    "n": 2081,
    "n_loss": 0,
    "points": [
      {
        "address": "UNIT 2, 23 BIMBADEEN CLOSE",
        "annual_growth_pct": 8.28,
        "buy_date": "Jul 2022",
        "buy_price": 670000,
        "gnaf_pid": "GANSW704079753",
        "hold_years": 1.2,
        "lat": -33.01894618,
        "lng": 151.67840667,
        "sell_date": "Oct 2023",
        "sell_price": 740000
      }
    ]
  }
}
Successful Response200
application/json