Provenance
Freshness & coverage
Methods (6)
searchWells
readPA O&G wells (Pennsylvania DEP).
EntitieswellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "status": { "type": "string" }, "wellType": { "type": "string" }, "wellConfig": { "type": "string" }, "wellCategory": { "type": "string", "examples": [ "unconventional" ], "oneOf": [ { "type": "string", "enum": [ "all" ] }, { "type": "string", "enum": [ "unconventional" ] }, { "type": "string", "enum": [ "conventional" ] }, { "type": "string", "enum": [ "orphaned" ] } ] }, "permitNumber": { "type": "string" }, "permitDateAfter": { "type": "string" }, "permitDateBefore": { "type": "string" }, "county": { "type": "string", "examples": [ "Washington" ] }, "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 }wellCategory unconv|conv|orphaned|all. wellConfig Vertical|Horizontal|Deviated.
getWellByApi
readLookup single well by Pennsylvania permit number, e.g. "003-22621" (Pennsylvania DEP).
Required paramsapiEntitieswellInput schema
{ "type": "object", "properties": { "api": { "type": "string", "examples": [ "003-22621" ] }, "permitNumber": { "type": "string" }, "permit_number": { "type": "string" }, "apiNumber": { "type": "string" }, "api_number": { "type": "string" } }, "additionalProperties": false, "required": [ "api" ] }Searches unconventional → conventional → orphaned in order.
searchPermits
readDrilling permits — wells with PERMIT_DATE in window (Pennsylvania DEP).
EntitiespermitInput schema
{ "type": "object", "properties": { "operator": { "type": "string", "examples": [ "Range Resources" ] }, "wellCategory": { "oneOf": [ { "type": "string", "enum": [ "all" ] }, { "type": "string", "enum": [ "unconventional" ] }, { "type": "string", "enum": [ "conventional" ] } ] }, "permitDateAfter": { "type": "string" }, "permitDateBefore": { "type": "string" }, "county": { "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 }searchOrphanedWells
readPA orphaned + abandoned wells (~27K). DEP Orphan List + DEP Abandoned List + Abandoned.
EntitieswellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "status": { "type": "string" }, "wellType": { "type": "string" }, "county": { "type": "string", "examples": [ "McKean" ] }, "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 }Layer 93 has its own schema variant — county filter works.
searchViolationsAndComplaints
readPA DEP Complaints (~39K). DEP violations Feature Service does not exist — Complaints used.
Entitiesincident, violationInput schema
{ "type": "object", "properties": { "county": { "type": "string" }, "typeDesc": { "type": "string", "examples": [ "Spill Response" ] }, "office": { "type": "string" }, "dateAfter": { "type": "string" }, "dateBefore": { "type": "string" }, "emergencyOnly": { "type": "boolean" }, "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 }TYPE_DESC: Water/Land/Air Contamination, Spill Response, Mine Subsidence.
getServiceInfo
readSchema + record counts for any of the 4 services (Pennsylvania DEP). Pass `service` to scope.
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string", "examples": [ "unconventionalWells" ] } }, "additionalProperties": false }
