ESRI MapServerData directory
Property
Published by DFSI Spatial Services NSW
Property boundaries and valuations for New South Wales from Valuer General data
Service facts
- Endpoint
- https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Property/MapServer
- Type
- ESRI MapServer
- Layers
- 5
- Formats
- PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP
- CRS
- EPSG:102100
- CORS
- Enabled
- Response time
- 306 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Property | ||||||||||||||||||||||||||
| 1 | Large_Rural_Property7 fields
| polygon | |||||||||||||||||||||||||
| 2 | Rural_Property6 fields
| polygon | |||||||||||||||||||||||||
| 3 | Semi_Rural_Property6 fields
| polygon | |||||||||||||||||||||||||
| 4 | Urban_Property6 fields
| polygon |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New Name: Property URL: https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Property/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server Server URL: https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Property/MapServer
Leaflet
fetch('https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Property/MapServer/0/query?where=1%3D1&outFields=*&f=geojson')
.then((r) => r.json())
.then((geojson) => L.geoJSON(geojson).addTo(map));Python
import geopandas as gpd
gdf = gpd.read_file(
'https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Property/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)