Suburb - Demographics
Cultural-integration score
GET
/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.
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
SuburbCulturalIntegrationfields returned to you
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.
GET
/v1/suburbs/{suburb_name}/demographics/cultural-integrationcURL
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
