Provenance
Freshness & coverage
Methods (5)
searchWells
readIndiana O&G wells (~78K). Filter county, status, lease, permit, classIIOnly, bbox/near.
EntitieswellInput schema
{ "type": "object", "properties": { "county": { "type": "string", "examples": [ "Gibson" ] }, "igsId": { "type": "string" }, "permitNumber": { "type": "string" }, "leaseName": { "type": "string" }, "operator": { "type": "string" }, "status": { "type": "string", "examples": [ "Active" ] }, "classIIOnly": { "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 }County values stored Title Case. operator_name column is always NULL upstream.
searchPipelines
readMajor natural gas pipelines (~215). Filter typePipe (Interstate|Intrastate), operator, bbox.
EntitiespipelineInput schema
{ "type": "object", "properties": { "typePipe": { "type": "string", "examples": [ "Interstate" ] }, "operator": { "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 }searchManagedLands
readDNR-managed lands. type: nature-preserve|recreation-site|forestry-tract. Filter name + bbox.
Required paramstypeInput schema
{ "type": "object", "properties": { "type": { "type": "string", "examples": [ "nature-preserve" ], "oneOf": [ { "type": "string", "enum": [ "nature-preserve" ] }, { "type": "string", "enum": [ "recreation-site" ] }, { "type": "string", "enum": [ "forestry-tract" ] } ] }, "name": { "type": "string" }, "category": { "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, "required": [ "type" ] }Counts: nature-preserve 191, recreation-site 153, forestry-tract 1594.
getWellByIgsId
readSingle well lookup by igs_id.
Required paramsigsIdEntitieswellInput schema
{ "type": "object", "properties": { "igsId": { "type": "string", "examples": [ "13" ] } }, "additionalProperties": false, "required": [ "igsId" ] }getServiceInfo
readSchema, record counts, and enum values for any of the 5 services.
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "oneOf": [ { "type": "string", "enum": [ "pipelines" ] }, { "type": "string", "enum": [ "oilAndGasWells" ] }, { "type": "string", "enum": [ "naturePreserves" ] }, { "type": "string", "enum": [ "recreationSites" ] }, { "type": "string", "enum": [ "forestryTracts" ] } ] } }, "additionalProperties": false }
