Skip to main content

Oil & Gas Templates

Energy sector documents and field reports. Structurify provides 7 templates for this category.

Available Templates

TemplateIDDescription
AFE - Authorization for Expenditureptpl_afeExtract data from Oil & Gas Authorization for Expenditure documents for JIB and
Biostratigraphy Reportptpl_biostratigraphy_reportExtract fossil events, zonation, and age data from biostratigraphy/nannofossil r
Drilling Mud Reportptpl_drilling_mud_reportExtract drilling fluid data from mud reports (Baroid, MI-SWACO, Newpark, etc.)
Graph/Chart Digitizationptpl_graph_digitizationExtract X,Y coordinate data points from graphs, charts, and plots
Petrophysical Data Tableptpl_petrophysical_dataExtract formation evaluation data from petrophysical summary tables (porosity, s
Well Log Curve Digitizationptpl_well_log_curvesDigitize well log curves to extract depth vs curve values at specified intervals
Well Log Headerptpl_well_log_headerExtract metadata from well log headers (wireline logs, LWD, interpreted logs)

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

# Create project with template
project = client.projects.create(
name="My Oil & Gas Project",
template_id="ptpl_afe"
)

# Upload and extract
doc = client.documents.upload(
project_id=project["id"],
file_path="document.pdf"
)
job = client.extraction.run(project_id=project["id"])
result = client.extraction.wait_for_completion(job["id"])

Try It