Mesh Block - Profile
List mesh blocks in a suburb
GET
/v1/mbs/list3¢ per callMesh-block codes inside a suburb. sal is required for now —
nationwide / by-LGA / by-SA3 listings will land later when there's
a story for the large payloads (a single LGA can hit a few
thousand mesh blocks).
Price: 3¢ per call.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Query parameters
salstringrequiredRequired. Suburb (SAL) to list mesh blocks for.
Responses
Successful Response
application/json
list[MeshBlockListItem]fields returned to you
Array of:
mb_codestringalways returnedABS Mesh Block code.
suburbstringalways returnedSuburb (SAL) the MB sits in.
statestringalways returnedState / Territory abbreviation.
GET
/v1/mbs/listcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/mbs/list?sal=Belmont%20North' \
--header 'Authorization: Bearer test'Example Responses
{
"data": [
{
"mb_code": "10434270000",
"state": "NSW",
"suburb": "Belmont North"
}
]
}Successful Response200
application/json
