Provenance
Freshness & coverage
Methods (7)
searchWells
readDOGRM wells (~242K). Filter county/operator/status/wellType, utica/marcellus/orphanOnly.
EntitieswellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "status": { "type": "string", "examples": [ "Producing" ] }, "wellType": { "type": "string" }, "orphanOnly": { "type": "boolean" }, "uticaOnly": { "type": "boolean" }, "marcellusOnly": { "type": "boolean" }, "township": { "type": "string" }, "formation": { "type": "string" }, "county": { "type": "string", "examples": [ "Belmont" ] }, "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 }WL_CNTY UPPERCASE upstream — Title Case on output. SLANT V/H/D/O.
getWellByApi
readLookup single well by API_WELLNO (14-digit, e.g. 34013204000000).
Required paramsapiEntitieswellInput schema
{ "type": "object", "properties": { "api": { "type": "string", "examples": [ "34013204000000" ] }, "apiNumber": { "type": "string" }, "api_number": { "type": "string" } }, "additionalProperties": false, "required": [ "api" ] }searchHorizontalWells
readUtica/Marcellus horizontal wellheads (~4.6K) or asLines=true for ~4.3K polylines.
Entitiesformation, wellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "status": { "type": "string" }, "play": { "type": "string", "examples": [ "utica" ], "oneOf": [ { "type": "string", "enum": [ "utica" ] }, { "type": "string", "enum": [ "marcellus" ] } ] }, "asLines": { "type": "boolean" }, "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 }Lines layer has no operator/county — bbox/near only when asLines=true.
searchWellPads
readWell Pad polygons (~1.2K). Filter county/operator/status. County Title Case.
Entitiespad, wellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "status": { "type": "string", "examples": [ "ACTIVE" ] }, "county": { "type": "string", "examples": [ "Belmont" ] }, "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 }searchDrillingUnits
readHorizontal Drilling Units (~1K polygons). Slim — only API_WELLNO + geometry.
Entitiesunit, lease, wellInput schema
{ "type": "object", "properties": { "apiNumber": { "type": "string", "examples": [ "34013204000000" ] }, "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 }searchOilGasFields
readField polygons (~3K). Filter prodType (OIL/GAS/CBM), fieldName, play.
EntitiesfieldInput schema
{ "type": "object", "properties": { "prodType": { "type": "string", "examples": [ "GAS" ] }, "fieldName": { "type": "string" }, "play": { "type": "string", "examples": [ "CLNN" ] }, "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 }getServiceInfo
readSchema + record counts for any of the 6 services (Ohio Oil & Gas). Pass `service` to scope.
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string", "examples": [ "wells" ] } }, "additionalProperties": false }
