Skip to main content

Insurance Templates

Claims, policies, certificates, and underwriting documents. Structurify provides 6 templates for this category.

Available Templates

TemplateIDDescription
ACORD 125 - Commercial Insurance Applicationptpl_acord_125Extract data from ACORD 125 commercial insurance applications
ACORD 2 - Automobile Loss Noticeptpl_acord_2Extract data from ACORD 2 auto loss/claim notices
ACORD 25 - Certificate of Liability Insuranceptpl_acord_25Extract data from ACORD 25 certificates of insurance
ACORD 28 - Evidence of Property Insuranceptpl_acord_28Extract data from ACORD 28 commercial property insurance evidence
Insurance Loss Run Reportptpl_loss_runExtract claim history from loss run reports for underwriting and renewal quoting
Policy Declaration Pageptpl_policy_dec_pageExtract coverage details from insurance policy declaration pages for quoting and

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

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

# 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