Provenance
Freshness & coverage
Methods (5)
searchWells
readNY oil/gas/storage/brine/CBM/geothermal wells (~47.4K). Filter by county/operator/type/status.
EntitieswellInput schema
{ "type": "object", "properties": { "county": { "type": "string", "examples": [ "Allegany" ] }, "operator": { "type": "string" }, "generalWellType": { "type": "string", "examples": [ "Oil Well" ] }, "wellTypeCode": { "type": "string" }, "generalWellStatus": { "type": "string" }, "wellStatusCode": { "type": "string" }, "slant": { "type": "string" }, "formation": { "type": "string" }, "town": { "type": "string" }, "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 }Use 2-letter wellTypeCode (OD/GD/IW) or human-readable generalWellType.
searchMines
readNY surface mining permits (~6.1K). Filter county/commodity/status.
Input schema
{ "type": "object", "properties": { "county": { "type": "string" }, "commodity": { "type": "string", "examples": [ "Sand and Gravel" ] }, "status": { "type": "string" }, "permittee": { "type": "string" }, "town": { "type": "string" }, "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 }COMMODITY is space-padded — handler trims. STATUS is 1-letter code (A/R/N).
getWellByApi
readSingle well by API_WELLNO (14-digit, NY uses 31-prefix).
Required paramsapiEntitieswellInput schema
{ "type": "object", "properties": { "api": { "type": "string", "examples": [ "31003123450000" ] }, "apiNumber": { "type": "string" }, "api_number": { "type": "string" } }, "additionalProperties": false, "required": [ "api" ] }getMineById
readSingle mine lookup by MINEID.
Required paramsmineIdInput schema
{ "type": "object", "properties": { "mineId": { "type": "number", "examples": [ 99999 ] } }, "additionalProperties": false, "required": [ "mineId" ] }getServiceInfo
readSchema, record counts, max-page caps, enum values, §0 probe notes for both layers.
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string" } }, "additionalProperties": false }
