All data sources

NM OCD Wells

No authnmocd

New Mexico OCD well and facility data — search wells, get well detail, surface facilities, OCD incidents, and induced-seismicity areas from the NM Energy, Minerals and Natural Resources Department.

Provenance

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • searchWells

    read

    Search New Mexico OCD wells by id/name/operator/county/type/status (NM OCD Wells).

    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "wellName": {
          "type": "string"
        },
        "wellId": {
          "type": "string"
        },
        "operatorName": {
          "type": "string"
        },
        "county": {
          "type": "string"
        },
        "wellType": {
          "type": "string"
        },
        "wellStatus": {
          "type": "string"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        },
        "returnGeometry": {
          "type": "boolean"
        }
      },
      "additionalProperties": false
    }
  • getWellDetail

    read

    Get a New Mexico OCD well record by id or name.

    Required paramswellId or wellName
    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "wellName": {
          "type": "string"
        },
        "wellId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "allOf": [
        {
          "anyOf": [
            {
              "required": [
                "wellId"
              ]
            },
            {
              "required": [
                "wellName"
              ]
            }
          ]
        }
      ]
    }
  • searchFacilities

    read

    Search New Mexico OCD facilities by id/name/operator/type.

    Entitiesrecord
    Input schema
    {
      "type": "object",
      "properties": {
        "facilityName": {
          "type": "string"
        },
        "facilityId": {
          "type": "string"
        },
        "operatorName": {
          "type": "string"
        },
        "facilityType": {
          "type": "string"
        },
        "ulstrPrefix": {
          "type": "string"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • searchIncidents

    read

    Search New Mexico OCD incidents/spills by operator/county/type/year.

    Entitiesincident
    Input schema
    {
      "type": "object",
      "properties": {
        "operatorName": {
          "type": "string"
        },
        "county": {
          "type": "string"
        },
        "incidentType": {
          "type": "string"
        },
        "minYear": {
          "type": "number"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • searchInducedSeismicityAreas

    read

    Search New Mexico induced-seismicity areas (bbox filter).

    Entitiessurvey
    Input schema
    {
      "type": "object",
      "properties": {
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }