Microburbs
Suburb - Market

Mortgage stress

GET/v1/suburbs/{suburb_name}/market/mortgage-stress10¢ per call

Mortgage-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_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
MortgageStressfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

scorenumbermay be null

Suburb-level stress score, 0-100 (higher = more stress).

mbsarray of MortgageStressMbalways returned

Per-mesh-block scores.

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