Provenance
Freshness & coverage
Methods (5)
searchWells
readArkansas oil and gas wells (~38.2K). Filter county UPPERCASE, operator, status, wellType, field.
EntitieswellInput schema
{ "type": "object", "properties": { "county": { "type": "string", "examples": [ "UNION" ] }, "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 }Field names lowercase upstream. CountyName UPPERCASE. wellstatus has "ex" typo.
searchLithiumLeasedAreas
readSmackover-Norphlet lithium-brine lease polygons (~7). Filter leaseName + bbox/near.
EntitiesrecordInput schema
{ "type": "object", "properties": { "leaseName": { "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 }Standard Lithium + ExxonMobil leased acreage. Commercial-scale brine play.
searchPipelines
readUSGS-1986 historical pipeline polylines (~719). Filter bestClass + quadName + bbox.
EntitiespipelineInput schema
{ "type": "object", "properties": { "bestClass": { "type": "string" }, "quadName": { "type": "string", "examples": [ "Fort Smith" ] }, "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 }Historical 1986 snapshot, not live AOGC data.
getWellByPermit
readSingle well lookup by permit or wellid (Arkansas Oil & Gas Commission).
Entitiespermit, wellInput schema
{ "type": "object", "properties": { "permit": { "type": "string", "examples": [ "1022" ] }, "permitNumber": { "type": "string" }, "wellId": { "type": "string" } }, "additionalProperties": false }getServiceInfo
readSchema, record counts, and enum values for any of the 3 services (AR Oil & Gas Commission).
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string" } }, "additionalProperties": false }
