Live sandbox. Send any request below against one sample suburb and property — no signup needed. For full coverage, create an API key.
Microburbs Property Data API
Property - Basics
Land area (sqm)
GET
/v1/properties/{gnaf_id}/basics/land-area-sqm3¢ per callParcel land area in square metres from the cadastral feed.
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
LandAreaSqmfields returned to you
land_area_sqmnumberalways returnedLand size in square metres — the figure the property was advertised with, not a survey or cadastral parcel measurement, so treat it as indicative. Acreage advertised in hectares is converted to square metres for you (1 ha = 10,000 sqm), which means small values are rare by construction and a suspiciously round large number may be a converted one. Null means no listing stated a land size; expect that on most apartments and units.
GET
/v1/properties/{gnaf_id}/basics/land-area-sqmcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/basics/land-area-sqm' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"land_area_sqm": 814
}
}Successful Response200
application/json
