All data sources

AZ Oil & Gas Conservation Commission

No authaz-azogcc

Arizona Oil & Gas Conservation Commission inventory: 1,241 well points plus sedimentary-basin and county-subdivision polygons from a 2023 snapshot. searchWells filters API, name, operator, county, status, or type; getWellsInBBox handles bbox/radius; polygon methods return GeoJSON. Well data is FeatureServer layer 7; layers 1-6 are generalized overlays, not wells. Status/type filters are case-insensitive because source casing varies. getCounties returns Census subdivisions, not the 15 counties. Native CRS is WGS84.

Provenance

PublisherAZ Oil & Gas Conservation Commission

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • searchWells

    read

    Search 1,241 AZ wells by API, name, operator, county, status, or type; supports GeoJSON.

    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "apiNumber": {
          "type": "string"
        },
        "wellName": {
          "type": "string"
        },
        "operator": {
          "type": "string"
        },
        "county": {
          "type": "string",
          "examples": [
            "Apache"
          ]
        },
        "status": {
          "type": "string"
        },
        "wellType": {
          "type": "string",
          "examples": [
            "Gas"
          ]
        },
        "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
    }

    Status/type are case-insensitive; use getServiceInfo for distinct values.

  • getWellsInBBox

    read

    Search AZ wells by bbox or radius, with optional status and type filters.

    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "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
        },
        "status": {
          "type": "string"
        },
        "wellType": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        },
        "format": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "records"
              ]
            },
            {
              "type": "string",
              "enum": [
                "geojson"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }

    Uses layer 7 and requires either bbox or near.

  • getSedimentaryBasins

    read

    Return sedimentary-basin polygons as GeoJSON, optionally filtered by name.

    Entitiesrecord
    Input schema
    {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "examples": [
            "paradox"
          ]
        },
        "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"
        }
      },
      "additionalProperties": false
    }
  • getCounties

    read

    Return 80 Census county-subdivision polygons as GeoJSON, optionally filtered by name.

    Entitiesrecord
    Input schema
    {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "examples": [
            "Willcox"
          ]
        },
        "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"
        }
      },
      "additionalProperties": false
    }

    These are county subdivisions, not AZ counties; searchWells filters by county.

  • getServiceInfo

    read

    Describe service schemas, counts, and distinct well status, type, and county values.

    Entitiesmetadata
    Input schema
    {
      "type": "object",
      "properties": {
        "service": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "wells"
              ]
            },
            {
              "type": "string",
              "enum": [
                "counties"
              ]
            },
            {
              "type": "string",
              "enum": [
                "sedimentaryBasins"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }