Microburbs
Suburb - Demographics

Cultural-integration score

GET/v1/suburbs/{suburb_name}/demographics/cultural-integration10¢ per call

Suburb cultural-integration composite (0-100) with national percentile and tier, plus the per-microburb scores behind it.

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
SuburbCulturalIntegrationfields returned to you
suburbstringalways returned

Canonical SAL name.

score_100numberalways returned

Suburb composite score, 0-100.

percentilenumberalways returned

National percentile (0-100).

tierstringmay be null

Tier bin: Top / Mid / Bottom.

tier_growth_pct_4ynumberalways returned

The tier's 4-year price growth (%).

cg_impact_pct_yrnumberalways returned

Capital-growth impact, % per year (tier growth / 4).

n_microburbsintegeralways returned

Microburbs with a composite score.

microburbsarray of CulturalIntegrationMbalways returned

Per-microburb composite scores.

most_integratedobjectmay be null

Most/least-integrated pocket callout.

least_integratedobjectmay be null

Most/least-integrated pocket callout.

GET/v1/suburbs/{suburb_name}/demographics/cultural-integration
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/demographics/cultural-integration' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "cg_impact_pct_yr": 0.43,
    "least_integrated": {
      "score_100": 51.5,
      "street": "Kalaroo Rd"
    },
    "microburbs": [
      {
        "mb": "10664530000",
        "score_100": 68.2,
        "street": "Marquis St"
      }
    ],
    "most_integrated": {
      "score_100": 68.2,
      "street": "Marquis St"
    },
    "n_microburbs": 77,
    "percentile": 79.7,
    "score_100": 61.8,
    "suburb": "Belmont North",
    "tier": "Top",
    "tier_growth_pct_4y": 1.7
  }
}
Successful Response200
application/json