Mesh Block - Profile
ABS geo profile
GET
/v1/mbs/{mb_code}/profile3¢ per callThe mesh block's upward ABS chain — SA1, SA2/3/4, GCCSA, state — plus the parallel admin chain (LGA, suburb (SAL), postcode).
Price: 3¢ per call.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Path parameters
mb_codestringrequiredQuery parameters
None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.
Responses
Successful Response
application/json
MeshBlockProfilefields returned to you
mesh_blockstringalways returnedABS Mesh Block code.
sa1stringalways returnedSA1 code.
sa2stringalways returnedSA2 name.
sa3stringalways returnedSA3 name.
sa4stringalways returnedSA4 name.
gccsastringalways returnedGreater Capital City Statistical Area.
statestringalways returnedState / Territory.
lgastringmay be nullLocal Government Area.
suburbstringmay be nullSuburb (SAL).
postcodestringmay be nullPostcode (POA).
GET
/v1/mbs/{mb_code}/profilecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/mbs/10434270000/profile' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"gccsa": "Rest of NSW",
"lga": "Lake Macquarie",
"mesh_block": "10434270000",
"postcode": "2280",
"sa1": "11101120618",
"sa2": "Belmont - Bennetts Green",
"sa3": "Lake Macquarie - East",
"sa4": "Newcastle and Lake Macquarie",
"state": "NSW",
"suburb": "Belmont North"
}
}Successful Response200
application/json
