Suburb - Market
Median weekly rent
GET
/v1/suburbs/{suburb_name}/market/median-rent12¢ per callLatest median weekly rent for the suburb.
Price: 12¢ 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
MedianRentfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
housenumbermay be nullMedian weekly rent for houses (AUD).
unitnumbermay be nullMedian weekly rent for units (AUD).
as_ofstringmay be nullDate of the most recent observation (YYYY-MM-DD).
GET
/v1/suburbs/{suburb_name}/market/median-rentcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/median-rent' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"as_of": "2026-05-24",
"house": 747,
"unit": 412
}
}Successful Response200
application/json
