Suburb - Market
Mortgage stress
GET
/v1/suburbs/{suburb_name}/market/mortgage-stress10¢ per callMortgage-stress score (0-100) for the suburb, with per-mesh-block breakdown.
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
MortgageStressfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
scorenumbermay be nullSuburb-level stress score, 0-100 (higher = more stress).
mbsarray of MortgageStressMbalways returnedPer-mesh-block scores.
GET
/v1/suburbs/{suburb_name}/market/mortgage-stresscURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/mortgage-stress' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"mbs": [
{
"mb": "10431160000",
"score": 42
},
{
"mb": "10431170000",
"score": 31
}
],
"score": 37
}
}Successful Response200
application/json
