Property - Profile
ABS geo profile
GET
/v1/properties/{gnaf_id}/profile3¢ per callResolve a GNAF to its full ABS Statistical Geography Standard hierarchy (Mesh Block → SA1 → SA2 → SA3 → SA4 → GCCSA → State) plus the parallel admin chain (LGA, suburb (SAL), postcode). Call this once to get every ABS key the rest of the data layers index on.
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
gnaf_idstringrequiredQuery parameters
None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.
Responses
Successful Response
application/json
PropertyProfilefields 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 — ABS Suburb and Locality).
postcodestringmay be nullPostcode (POA).
GET
/v1/properties/{gnaf_id}/profilecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/profile' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"gccsa": "Australian Capital Territory",
"lga": "Unincorporated ACT",
"mesh_block": "80111103200",
"postcode": "2902",
"sa1": "80101102001",
"sa2": "Kambah",
"sa3": "Tuggeranong",
"sa4": "Australian Capital Territory",
"state": "ACT",
"suburb": "Kambah (ACT)"
}
}Successful Response200
application/json
