Suburb - Market
Repeat sales
GET
/v1/suburbs/{suburb_name}/market/repeat-sales15¢ per callRealised 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_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
RepeatSalesfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
nintegermay be nullRepeat-sale pairs observed in the suburb.
n_lossintegermay be nullPairs that resold at a loss.
avg_annual_growth_pctnumbermay be nullAverage realised annual growth across pairs (%).
pointsarray of RepeatSalePointalways returnedIndividual buy/sell pairs (capped at 500).
GET
/v1/suburbs/{suburb_name}/market/repeat-salescURL
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
