Provenance
Freshness & coverage
Methods (5)
searchForestPreserve
readNY Forest Preserve (Adirondack + Catskill, ~1.5K). Filter county, region, facility, minAcres.
Input schema
{ "type": "object", "properties": { "county": { "type": "string" }, "region": { "type": "number", "examples": [ 5 ] }, "facility": { "type": "string" }, "minAcres": { "type": "number", "examples": [ 1000 ] }, "includeDetachedParcels": { "type": "boolean" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }includeDetachedParcels=true by default (adds 140 detached parcels).
searchStateForests
readNY State Forests (~817 polygons). Filter county, region (1-9), forestName, minAcres, bbox.
Input schema
{ "type": "object", "properties": { "county": { "type": "string", "examples": [ "TIOGA" ] }, "region": { "type": "number" }, "forestName": { "type": "string" }, "minAcres": { "type": "number" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }searchWildlifeManagementAreas
readNY WMAs — DEC hunting/fishing lands (~336 polygons). Filter county, region, wmaName, minAcres, bbox.
Input schema
{ "type": "object", "properties": { "county": { "type": "string" }, "region": { "type": "number" }, "wmaName": { "type": "string", "examples": [ "Tonawanda" ] }, "minAcres": { "type": "number" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }searchAllDecLands
readGeneric search across 23 CATEGORY values (~3.2K). Filter category, county, region, facility.
Input schema
{ "type": "object", "properties": { "category": { "type": "string", "examples": [ "TIDAL WETLAND" ] }, "county": { "type": "string" }, "region": { "type": "number" }, "facility": { "type": "string" }, "minAcres": { "type": "number" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Categories incl Tidal/Freshwater Wetland, Multiple Use Area, Unique Area.
getServiceInfo
readSchema, record count, all 23 CATEGORY codedValues with counts, 9 DEC regions, §0 notes.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": true }
