All data sources

BC Energy Regulator

No authbc-wells

British Columbia Energy Regulator — oil & gas well data for BC (Montney play, WCSB). Public ArcGIS REST, no auth. METHODS: searchBCWells, getBCWellDetail, searchAllInternationalWells CRITICAL USAGE RULES: 1. Well IDs are BC-specific authority numbers (not US API format) 2. Use field or formation for play names like Montney; in BC this primarily matches well-area/play labels and sometimes well names 3. searchAllInternationalWells is a cross-jurisdiction sweep (currently BC only; expands as more jurisdictions wire in) 4. bbox params are [minLon, minLat, maxLon, maxLat]

Provenance

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (3)

  • searchBCWells

    read

    British Columbia petroleum wells. Filter operator, name, status, type, region, field, play, bbox.

    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "operator": {
          "type": "string"
        },
        "wellName": {
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "wellType": {
          "type": "string"
        },
        "region": {
          "type": "string"
        },
        "field": {
          "type": "string"
        },
        "formation": {
          "type": "string"
        },
        "wellId": {
          "type": "string"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }

    formation filter primarily matches play or well-area labels.

  • getBCWellDetail

    read

    Full BC well record by wellId.

    Required paramswellId
    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "wellId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "wellId"
      ]
    }
  • searchAllInternationalWells

    read

    Cross-jurisdiction well search.

    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "operator": {
          "type": "string"
        },
        "wellName": {
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "wellType": {
          "type": "string"
        },
        "region": {
          "type": "string"
        },
        "field": {
          "type": "string"
        },
        "formation": {
          "type": "string"
        },
        "wellId": {
          "type": "string"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }