Provenance
Freshness & coverage
Methods (5)
searchWells
readMS canonical wells (~8.1K). Filter county UPPERCASE, operator, status, wellType, field.
EntitieswellInput schema
{ "type": "object", "properties": { "county": { "type": "string", "examples": [ "JASPER" ] }, "operator": { "type": "string" }, "status": { "type": "string" }, "wellType": { "type": "string", "examples": [ "OIL" ] }, "field": { "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 }API stored as Double — handler normalizes to string. CountyName UPPERCASE.
searchPipelines
readPipelines onshore (lean) + offshore BSEE. jurisdiction: onshore | offshore | both.
EntitiespipelineInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "productCode": { "type": "string", "examples": [ "GAS" ] }, "status": { "type": "string" }, "jurisdiction": { "type": "string", "examples": [ "offshore" ], "oneOf": [ { "type": "string", "enum": [ "both" ] }, { "type": "string", "enum": [ "offshore" ] }, { "type": "string", "enum": [ "onshore" ] } ] }, "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 }productCode/status filters apply only to offshore (layer 5).
searchOffshorePlatforms
readOffshore platforms (~617). Filter structureName + installedOnly (REMOVAL_DA IS NULL).
Entitiesplatform, facilityInput schema
{ "type": "object", "properties": { "structureName": { "type": "string" }, "installedOnly": { "type": "boolean", "examples": [ true ] }, "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 }getWellByApi
readSingle well lookup by API number (10-digit numeric).
Required paramsapiEntitieswellInput schema
{ "type": "object", "properties": { "api": { "type": "integer", "examples": [ 2300100579 ], "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "apiNumber": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "api_number": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "additionalProperties": false, "required": [ "api" ] }getServiceInfo
readSchema, record counts, and enum values for any of the 5 services (MS Oil & Gas Board).
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string" } }, "additionalProperties": false }
