Provenance
Freshness & coverage
Methods (6)
searchWells
readWOGCC wells (~68.7K). Filter county (FIPS or name), operator, status, wellClass, twp/rge.
EntitieswellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "status": { "type": "string", "examples": [ "PR" ] }, "wellClass": { "type": "string" }, "fieldName": { "type": "string" }, "township": { "type": "number" }, "range": { "type": "number" }, "horizontalOnly": { "type": "boolean" }, "county": { "type": "string", "examples": [ "Campbell" ] }, "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 holds all statuses despite naming. status: 2-letter (PR/PA/SI) or text.
getWellByApi
readLookup single well by API_NUMBER (12-char dashed) or APINO integer.
Required paramsapiEntitieswellInput schema
{ "type": "object", "properties": { "api": { "type": "string", "examples": [ "49-005-05036" ] }, "apiNumber": { "type": "string" }, "api_number": { "type": "string" } }, "additionalProperties": false, "required": [ "api" ] }searchPermits
readDrilling permits — STATUS in AP+NI on Wells layer (Wyoming OGCC). No separate APD Feature Service.
EntitiespermitInput schema
{ "type": "object", "properties": { "operator": { "type": "string", "examples": [ "EOG" ] }, "fieldName": { "type": "string" }, "stage": { "oneOf": [ { "type": "string", "enum": [ "all" ] }, { "type": "string", "enum": [ "pending" ] }, { "type": "string", "enum": [ "AP" ] }, { "type": "string", "enum": [ "NI" ] }, { "type": "string", "enum": [ "PL" ] }, { "type": "string", "enum": [ "PG" ] }, { "type": "string", "enum": [ "EP" ] }, { "type": "string", "enum": [ "SO" ] } ] }, "township": { "type": "number" }, "range": { "type": "number" }, "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 }searchHorizontalLegs
readBottom Hole Vectors (~28K) — horizontal lateral polylines. Filter reservoir/apino/minVectorLength.
Entitiesformation, trajectory, wellInput schema
{ "type": "object", "properties": { "apino": { "type": "number" }, "reservoir": { "type": "string", "examples": [ "NIOBRARA" ] }, "minVectorLength": { "type": "number" }, "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 }NO county column — pass bbox or near for spatial scoping.
searchPluggedAndAbandoned
readPlugged & Abandoned Wells (~61.2K). Replaces searchPits — no pit Feature Service.
EntitiescompletionInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "fieldName": { "type": "string" }, "township": { "type": "number" }, "range": { "type": "number" }, "county": { "type": "string", "examples": [ "Campbell" ] }, "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 3 services (Wyoming OGCC). Pass `service` to scope.
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string", "examples": [ "wells" ] } }, "additionalProperties": false }
