Suburb - Market
Gross rental yield (%)
GET
/v1/suburbs/{suburb_name}/market/yield-pct5¢ per callGross rental yield = median rent annualised / median sale price.
Price: 5¢ 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
YieldPctfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
housenumbermay be nullHouse gross yield (decimal).
unitnumbermay be nullUnit gross yield (decimal).
as_ofstringmay be nullDate of the most recent observation (YYYY-MM-DD).
GET
/v1/suburbs/{suburb_name}/market/yield-pctcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/yield-pct' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"as_of": "2026-05-24",
"house": 0.0335,
"unit": 0.0384
}
}Successful Response200
application/json
