Suburb - Lifestyle
Livability narrative sentences
GET
/v1/suburbs/{suburb_name}/lifestyle/narrative10¢ per callOne plain-English sentence per livability dimension for the suburb.
Price: 10¢ 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
LifestyleNarrativefields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
sentencesobjectalways returnedOne plain-English sentence per livability dimension. A dimension is omitted when no sentence exists for it. No ``safety`` key — the upstream crime sentence is SEIFA text, deliberately excluded.
GET
/v1/suburbs/{suburb_name}/lifestyle/narrativecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/lifestyle/narrative' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"sentences": {
"affluence": "37% own outright. Only 10% hold university degrees. Household income $1,728/wk.",
"convenience": "No train nearby (9 km). Nearest supermarket: Coles (851m). Hospital 2.9 km."
}
}
}Successful Response200
application/json
