Technology Templates
Patents, IP, and technology documents. Structurify provides 4 templates for this category.
Available Templates
| Template | ID | Description |
|---|---|---|
| SBOM & Vulnerability Report | ptpl_sbom_report | Extract components, versions, licenses, and CVEs from Software Bill of Materials |
| AWS Invoice | ptpl_aws_invoice | Extract billing details, service charges, and usage data from Amazon Web Service |
| Azure Invoice | ptpl_azure_invoice | Extract billing details, service charges, and usage data from Microsoft Azure in |
| Google Cloud Invoice | ptpl_gcp_invoice | Extract 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
- Run in Google Colab - Interactive notebooks
- CodeSandbox Examples - Node.js examples