Microburbs
Suburb - Market

Median weekly rent

GET/v1/suburbs/{suburb_name}/market/median-rent12¢ per call

Latest 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_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
MedianRentfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

housenumbermay be null

Median weekly rent for houses (AUD).

unitnumbermay be null

Median weekly rent for units (AUD).

as_ofstringmay be null

Date of the most recent observation (YYYY-MM-DD).

GET/v1/suburbs/{suburb_name}/market/median-rent
cURL
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