Provenance
Freshness & coverage
Methods (6)
searchWells
readCO ECMC wells (~120K). Filter county (FIPS or name), operator, status, citingType, fieldName.
EntitieswellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "status": { "type": "string", "examples": [ "PR" ] }, "citingType": { "type": "string" }, "fieldName": { "type": "string" }, "statDateAfter": { "type": "string" }, "statDateBefore": { "type": "string" }, "county": { "type": "string", "examples": [ "Weld" ] }, "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 }status accepts 2-letter (PR/PA/AC) or text (Producing). API_County FIPS only.
getWellByApi
readLookup single well by API (10 chars) or API_Label (12 chars dashed).
Required paramsapiEntitieswellInput schema
{ "type": "object", "properties": { "api": { "type": "string", "examples": [ "05-123-05000" ] }, "apiNumber": { "type": "string" }, "api_number": { "type": "string" } }, "additionalProperties": false, "required": [ "api" ] }searchPermits
readDrilling permits — Citing_Typ NOTICE+PLANNED on Well Spots. NO separate Permits service.
EntitiespermitInput schema
{ "type": "object", "properties": { "operator": { "type": "string", "examples": [ "PDC ENERGY" ] }, "fieldName": { "type": "string" }, "citingType": { "oneOf": [ { "type": "string", "enum": [ "all" ] }, { "type": "string", "enum": [ "NOTICE" ] }, { "type": "string", "enum": [ "PLANNED" ] }, { "type": "string", "enum": [ "HISTORICAL" ] }, { "type": "string", "enum": [ "ACTUAL" ] } ] }, "statDateAfter": { "type": "string" }, "statDateBefore": { "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 }searchPits
readCO ECMC pit inventory (~13.7K). Replaces dropped searchSpills (no spills service).
EntitiesrecordInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "status": { "type": "string", "examples": [ "AC" ] }, "fieldName": { "type": "string" }, "county": { "type": "string", "examples": [ "La Plata" ] }, "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 }Pit Facil_Stat: CL/AC/AL/UN/CM. Filter county/operator/status.
searchDirectionalBottomHoles
readLateral bottom-hole locations (~38.1K). Replaces dropped searchSetbacks.
Entitiestrajectory, wellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "bhStatus": { "oneOf": [ { "type": "string", "enum": [ "Actual" ] }, { "type": "string", "enum": [ "Planned" ] } ] }, "fieldName": { "type": "string", "examples": [ "WATTENBERG" ] }, "minMd": { "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 }BH_Status Actual/Planned. Niobrara/Wattenberg horizontals.
getServiceInfo
readColorado ECMC oil and gas service catalog: schemas + record counts (4 services).
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string", "examples": [ "wellSpots" ] } }, "additionalProperties": false }
