Microburbs
Mesh Block - Profile

ABS geo profile

GET/v1/mbs/{mb_code}/profile3¢ per call

The 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_codestringrequired

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
MeshBlockProfilefields returned to you
mesh_blockstringalways returned

ABS Mesh Block code.

sa1stringalways returned

SA1 code.

sa2stringalways returned

SA2 name.

sa3stringalways returned

SA3 name.

sa4stringalways returned

SA4 name.

gccsastringalways returned

Greater Capital City Statistical Area.

statestringalways returned

State / Territory.

lgastringmay be null

Local Government Area.

suburbstringmay be null

Suburb (SAL).

postcodestringmay be null

Postcode (POA).

GET/v1/mbs/{mb_code}/profile
cURL
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