Skip to content
A NSW Government website
  • Datasets
  • Organizations
  • Groups
  • About
  • Admin Login
  • Request Data
NSW Government
Data.NSW
Menu
  • NSW Data Strategy keyboard_arrow_right
    NSW Data Strategy east
    • Case studies
  • About! keyboard_arrow_right
    About! east
    Test description
    • NSW Data Analytics Centre keyboard_arrow_right
      NSW Data Analytics Centre east
      • Working with the DAC
      • DAC Data Governance
    • Security Statement
  • Data Policy keyboard_arrow_right
    Data Policy east
    • Key NSW Data Legislation and Policies
    • Information Management Framework
    • Data Custodianship Policy
    • Data Governance Toolkit keyboard_arrow_right
      Data Governance Toolkit east
      • Module 1: Introduction to Data Governance
      • Module 2: Legal and Policy Context
      • Module 3: Data Governance Model
      • Module 4: Strategy and Planning
      • Module 5: Organisational Structures
      • Module 6: Assigning roles and responsibilities
      • Module 7: Leadership
      • Module 8: Data-driven Culture
      • Module 9: Workforce Skills and Capability
      • Module 10: Technology
      • Module 11: Data Management
      • Module 12: Data Governance Checklist
    • Open Data Policy
    • Infrastructure Data Management Framework keyboard_arrow_right
      Infrastructure Data Management Framework east
      • Vision and Principles
      • Overview
      • Key Concepts
      • Organising the Organisation
      • Data Requirements
      • Data Structure and Coordination
      • Data Management and Practice
      • Data
      • Implementation Guidance
    • Information Classification, Labelling and Handling Guidelines
    • Data Quality Reporting Tool
    • NSW Government Information Classification, Labelling and Handling Guidelines
    • Basic page Submenu
  • Sharing Data keyboard_arrow_right
    Sharing Data east
    • Design and Manage Data for Sharing keyboard_arrow_right
      Design and Manage Data for Sharing east
      • Data Sharing Checklist for Data Owners
      • Making Data Safe for Sharing
      • Making Data Available for Sharing
      • Responding to Data Access Requests
    • Developing a Business Case for Data Sharing
    • Data Sharing Agreements and Licenses
    • Measuring Data Maturity
  • Using Data keyboard_arrow_right
    Using Data east
    • Data.NSW Frequently Asked Questions (Admin)
    • Visualising Data
    • Requesting Agency Data keyboard_arrow_right
      Requesting Agency Data east
      • Requesting Data Checklist
    • Using Spatial Data
    • Data Champions Network
    • Forum
    • Dataset quick links keyboard_arrow_right
      Dataset quick links east
      • COVID-19 data keyboard_arrow_right
        COVID-19 data east
        • Data Program
        • Cases data
        • Tests data
        • Case locations data
        • COVID Safe businesses and organisations
        • COVID-19 clinics
        • COVID-19 public transport routes
      • Bushfire and air quality data
      • Economic and social indicators
  • Our Work keyboard_arrow_right
    Our Work east
    • NSW design system components
  • Contact
  • Landing keyboard_arrow_right
    Landing east
    • Landing page item one
    • Landing page item two
    • Landing page item three
    • Landing page item four
    • Landing page item six before 5
    • Landing page item five
    • Item 7
  • Insights
  1. Home
  2. Open Data
  3. Search
  4. Wollondilly Open Spaces...
  5. Unnamed resource
Spatial Services (DFSI)

Unknown

chevron_left Back to dataset

Download URL: https://portal.spatial.nsw.gov.au/portal/sharing/servers/1f42e4c298f1470fb6b3f49650ea3157/rest/services/Hosted/Wollondilly_Open_Spaces_Playgrounds_Public/FeatureServer

There are no views created for this resource yet.

Additional Information
Field Value
Title Unknown
Data last updated 27/09/2021
Metadata last updated 08/06/2023
Format ARCGIS REST SERVICE
License License Not Specified
Original URL https://portal.spatial.nsw.gov.au/portal/sharing/servers/1f42e4c298f1470fb6b3f49650ea3157/rest/services/Hosted/Wollondilly_Open_Spaces_Playgrounds_Public/FeatureServer
download Download ARCGIS REST SERVICE
Updates
Last updated 27/09/2021
Date Created 27/09/2021
File format ARCGIS REST SERVICE
Licence
License Not Specified

CKAN Data API

Access resource data via a web API with powerful query support. Further information in the main CKAN Data API and DataStore documentation.

Code examples:

Querying
Get 5 results containing "jones" in any field:
curl https://devweb.datansw.links.com.au/data/api/action/datastore_search \
  -H"Authorization:$API_TOKEN" -d '
{
  "resource_id": "5c45bfac-d65c-4d72-af68-d6ab0bb14acd",
  "limit": 5,
  "q": "jones"
}'
const resp = await fetch(`https://devweb.datansw.links.com.au/data/api/action/datastore_search`, {
    method: 'POST',
    headers: {
        'content-type': 'application/json',
        authorization: API_TOKEN
    },
    body: JSON.stringify({
        resource_id: '5c45bfac-d65c-4d72-af68-d6ab0bb14acd',
        limit: 5,
        q: 'jones'
    })
})
await resp.json()
$json = @'
{
  "resource_id": "5c45bfac-d65c-4d72-af68-d6ab0bb14acd",
  "limit": 5,
  "q": "jones"
}
'@
$response = Invoke-RestMethod https://devweb.datansw.links.com.au/data/api/action/datastore_search`
  -Method Post -Body $json -Headers @{"Authorization"="$API_TOKEN"}
$response.result.records

(using the ckanapi client library)

from ckanapi import RemoteCKAN

rc = RemoteCKAN('https://devweb.datansw.links.com.au/data/', apikey=API_TOKEN)
result = rc.action.datastore_search(
    resource_id="5c45bfac-d65c-4d72-af68-d6ab0bb14acd",
    limit=5,
    q="jones",
)
print(result['records'])
library(httr2)

req <- request("https://devweb.datansw.links.com.au/data/api/action/datastore_search")
result <- req %>% 
    req_headers(Authorization = API_TOKEN) %>% 
    req_body_json(list(
        resource_id = '5c45bfac-d65c-4d72-af68-d6ab0bb14acd',
        limit = 5,
        q = 'jones'))
    req_perform %>% 
    resp_body_json
Get results with either "watershed" or "survey" as subject and "active" as its stage:
curl https://devweb.datansw.links.com.au/data/api/action/datastore_search \
-H"Authorization:$API_TOKEN" -d '
{
"resource_id": "5c45bfac-d65c-4d72-af68-d6ab0bb14acd",
  "filters": {
    "subject": ["watershed", "survey"],
    "stage": "active"
  }
}'
const resp = await fetch(`https://devweb.datansw.links.com.au/data/api/action/datastore_search`, {
    method: 'POST',
    headers: {
        'content-type': 'application/json',
        authorization: API_TOKEN
    },
    body: JSON.stringify({resource_id: '5c45bfac-d65c-4d72-af68-d6ab0bb14acd', filters: {
        subject: ['watershed', 'survey'],
        stage: 'active'
    }})})
await resp.json()
$json = @'
{
  "resource_id": "5c45bfac-d65c-4d72-af68-d6ab0bb14acd",
  "filters": {
    "subject": ["watershed", "survey"],
    "stage": "active"
  }
}
'@
$response = Invoke-RestMethod https://devweb.datansw.links.com.au/data/api/action/datastore_search`
  -Method Post -Body $json -Headers @{"Authorization"="$API_TOKEN"}
$response.result.records
from ckanapi import RemoteCKAN

rc = RemoteCKAN('https://devweb.datansw.links.com.au/data/', apikey=API_TOKEN)
result = rc.action.datastore_search(
    resource_id="5c45bfac-d65c-4d72-af68-d6ab0bb14acd",
    filters={
      "subject": ["watershed", "survey"],
      "stage": "active",
    },
)
print(result['records'])
library(httr2)

req <- request("https://devweb.datansw.links.com.au/data/api/action/datastore_search")
result <- req %>% 
    req_headers(Authorization = API_TOKEN) %>% 
    req_body_json(list(
        resource_id='5c45bfac-d65c-4d72-af68-d6ab0bb14acd', 
        filters = list(
            subject = list("watershed", "survey"), 
            stage = "active")))
    req_perform %>% 
    resp_body_json
Using the API with this Web Browser

Some API endpoints may be accessed using a GET query string.

Query example (first 5 results)

https://devweb.datansw.links.com.au/data/api/action/datastore_search?resource_id=5c45bfac-d65c-4d72-af68-d6ab0bb14acd&limit=5

Query example (results containing 'jones')

https://devweb.datansw.links.com.au/data/api/action/datastore_search?resource_id=5c45bfac-d65c-4d72-af68-d6ab0bb14acd&q=jones

Popular
  • About Data.NSW
  • Key NSW Data Legislation and Policies
  • Data.NSW Policy
  • Data Skills
  • Forum
  • Twitter
Open Data Portals
  • Shared Data Portal
  • API.NSW
  • Environmental Data Portal, SEED
  • NSW Department of Education
  • NSW Health
  • Transport for NSW
  • NSW Bureau of Crime Statistics and Research
  • NSW Spatial Data Catalogue
  • NSW Flood Portal
  • ePlanning
  • State Insurance Regulatory Authority
About This Site
  • Get in Touch
  • Site Search
  • Accessibility
  • Copyright
  • Disclaimer
  • Privacy

We pay respect to the Traditional Custodians and First Peoples of NSW, and acknowledge their continued connection to their country and culture.


Copyright © 2025
Built by NSW Design System