Skip to main content

Cadastral API

Query Australian property boundary and parcel data.

Query Parcel

GET /v1/cadastral

Parameters

ParameterTypeRequiredDescription
latfloatYes*Latitude
lngfloatYes*Longitude
addressstringYes*Street address
lotstringYes*Lot number
planstringYes*Plan number
statestringNoState code (QLD, NSW, VIC, etc.)
crsstringNoOutput CRS (default: EPSG:4326)
formatstringNogeojson, shapefile, gpkg

*Provide one of: lat/lng, address, or lot/plan.

Example

curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.geolocarta.com/v1/cadastral?lat=-27.4698&lng=153.0251"

Response

{
"data": {
"id": "cad_qld_sp123456_42",
"lot": "42",
"plan": "SP123456",
"area_sqm": 607.5,
"state": "QLD",
"lga": "Brisbane City",
"zoning": "Residential - Low Density",
"title_ref": "50012345",
"geometry": {
"type": "Polygon",
"coordinates": [[...]]
}
}
}

Bulk Query

POST /v1/cadastral/bulk

Fetch all parcels within a bounding box or polygon.

Request Body

{
"bounds": {
"north": -27.46,
"south": -27.48,
"east": 153.04,
"west": 153.02
},
"format": "geojson"
}

GeoJSON Endpoint

GET /v1/cadastral/geojson

Returns a GeoJSON FeatureCollection, suitable for direct use in mapping libraries.

ParameterTypeDescription
boundsstringsouth,west,north,east
limitintegerMax features (default: 500)
Was this page helpful?