Cultural-integration score
/v1/suburbs/{suburb_name}/demographics/cultural-integration10¢ per callSuburb cultural-integration composite (0-100) with national percentile and tier, plus the per-microburb scores behind it.
Exact suburb identifier required. Exact ABS Suburb and Locality (SAL) name, e.g. Burwood (NSW) — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call GET /v1/geocode/suburb?q=<text>, then use the exact data[].area_name it returns. Suburb data endpoints do not guess a state or typo-correct names.
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_namestringrequiredExact ABS Suburb and Locality (SAL) name, e.g. `Burwood (NSW)` — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call `GET /v1/geocode/suburb?q=<text>`, then use the exact `data[].area_name` it returns. Suburb data endpoints do not guess a state or typo-correct names.
Query parameters
Responses
Successful Response
suburbstringalways returnedCanonical SAL name.
score_100numberalways returnedSuburb composite score, 0-100.
percentilenumberalways returnedNational percentile (0-100).
tierstringmay be nullTier bin: Top / Mid / Bottom.
tier_growth_pct_4ynumberalways returnedThe tier's 4-year price growth (%).
cg_impact_pct_yrnumberalways returnedCapital-growth impact, % per year (tier growth / 4).
n_microburbsintegeralways returnedMicroburbs with a composite score.
microburbsarray of CulturalIntegrationMbalways returnedPer-microburb composite scores.
most_integratedobjectmay be nullMost/least-integrated pocket callout.
least_integratedobjectmay be nullMost/least-integrated pocket callout.
/v1/suburbs/{suburb_name}/demographics/cultural-integrationcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/demographics/cultural-integration' \
--header 'Authorization: Bearer test'{
"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
}
}