All data sources

NY Department of Environmental Conservation — Oil & Gas + Mines

No authny-dec-og

New York DEC Division of Mineral Resources — oil and gas wells (Allegany / Cattaraugus / Chautauqua dominant) plus surface mining permits (sand and gravel, bluestone, limestone). - searchWells (~47.4K) ⭐ filter county/operator/generalWellType/wellTypeCode/status/slant/formation - searchMines (~6.1K) ⭐ filter county/commodity/status/permittee - getWellByApi (API_WELLNO 14-digit), getMineById (MINEID), getServiceInfo §0 caught: WELL_TYPE / WELL_STATUS use 2-letter codes (OD/GD/IW/PA/AC); GENERALWELLTYPE / GENERALWELLSTATUS rollups available. Native CRS EPSG:26918 (NAD83 UTM 18N); outSR=4326 reprojects. Mines COMMODITY values are space-padded fixed-width — handler trims. Mines dates stored MM/DD/YYYY (NOT epoch ms). NY env folded into this connector per Batch L plan.

Provenance

PublisherNY Department of Environmental Conservation — Oil & Gas + Mines

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • searchWells

    read

    NY oil/gas/storage/brine/CBM/geothermal wells (~47.4K). Filter by county/operator/type/status.

    Entitieswell
    Input 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

    read

    NY 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

    read

    Single well by API_WELLNO (14-digit, NY uses 31-prefix).

    Required paramsapi
    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "api": {
          "type": "string",
          "examples": [
            "31003123450000"
          ]
        },
        "apiNumber": {
          "type": "string"
        },
        "api_number": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "api"
      ]
    }
  • getMineById

    read

    Single mine lookup by MINEID.

    Required paramsmineId
    Input schema
    {
      "type": "object",
      "properties": {
        "mineId": {
          "type": "number",
          "examples": [
            99999
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "mineId"
      ]
    }
  • getServiceInfo

    read

    Schema, record counts, max-page caps, enum values, §0 probe notes for both layers.

    Entitiesmetadata
    Input schema
    {
      "type": "object",
      "properties": {
        "service": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }