All data sources

AK Oil and Gas Conservation Commission

No authak-aogcc

Alaska Oil and Gas Conservation Commission well registry. North Slope (Arctic Slope ~8.1K wells) + Cook Inlet Basin (~1.75K) operator side — Hilcorp, ConocoPhillips, BP/ARCO heavy. - searchWells (~10.3K) ⭐ filter area (basin)/operator/status/wellClass/field/offshoreOnly. Pass bottomHole=true for bottom-hole locations. - searchBottomHoles ⭐ alias for the paired Well_Bottom_Hole_Location service - getWellByApi, listLayers, getServiceInfo upstream quirks: AK is borough-based (no county column) — use area for basin scoping. Native CRS EPSG:3338; service reprojects to 4326. CurrentStatus has 30+ descriptive values (Plugged & Abandoned 3.8K, Oil well single 3.4K, Water alt gas injection 976). maxRecordCount=2000.

Provenance

PublisherAK Oil and Gas Conservation Commission

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • searchWells

    read

    AOGCC wells (~10.3K). Filter area/operator/status/wellClass/field/offshoreOnly.

    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "operator": {
          "type": "string",
          "examples": [
            "Hilcorp"
          ]
        },
        "status": {
          "type": "string"
        },
        "wellClass": {
          "type": "string"
        },
        "field": {
          "type": "string"
        },
        "offshoreOnly": {
          "type": "boolean"
        },
        "bottomHole": {
          "type": "boolean"
        },
        "area": {
          "type": "string",
          "examples": [
            "ARCTIC SLOPE"
          ]
        },
        "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
    }

    AK has NO county — use area (basin). bottomHole=true switches layer.

  • searchBottomHoles

    read

    Bottom-hole locations (~10.3K) — same schema, deviated/horizontal end points.

    Entitiestrajectory, well
    Input schema
    {
      "type": "object",
      "properties": {
        "operator": {
          "type": "string"
        },
        "format": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "records"
              ]
            },
            {
              "type": "string",
              "enum": [
                "geojson"
              ]
            }
          ]
        },
        "status": {
          "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"
        },
        "wellClass": {
          "type": "string"
        },
        "field": {
          "type": "string"
        },
        "offshoreOnly": {
          "type": "boolean"
        },
        "area": {
          "type": "string",
          "examples": [
            "COOK INLET BASIN"
          ]
        }
      },
      "additionalProperties": false
    }
  • getWellByApi

    read

    Lookup single well by APINumber (14-digit, e.g. 50029201810000).

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

    read

    Hub-discovery summary: services exposed and their URLs.

    Entitiesmetadata
    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }
  • getServiceInfo

    read

    Schema + record counts for surface and bottom-hole layers.

    Entitiesmetadata
    Input schema
    {
      "type": "object",
      "properties": {
        "service": {
          "type": "string",
          "examples": [
            "surfaceHoles"
          ]
        }
      },
      "additionalProperties": false
    }