Skip to main content

Technology Templates

Patents, IP, and technology documents. Structurify provides 4 templates for this category.

Available Templates

TemplateIDDescription
SBOM & Vulnerability Reportptpl_sbom_reportExtract components, versions, licenses, and CVEs from Software Bill of Materials
AWS Invoiceptpl_aws_invoiceExtract billing details, service charges, and usage data from Amazon Web Service
Azure Invoiceptpl_azure_invoiceExtract billing details, service charges, and usage data from Microsoft Azure in
Google Cloud Invoiceptpl_gcp_invoiceExtract billing details, service charges, and usage data from Google Cloud Platf

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

# Create project with template
project = client.projects.create(
name="My Technology Project",
template_id="ptpl_sbom_report"
)

# 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