Skip to main content

Government Templates

Permits, licenses, and regulatory documents. Structurify provides 8 templates for this category.

Available Templates

TemplateIDDescription
US Customs Entry Summary 7501ptpl_cbp_7501Extract data from CBP Form 7501 customs entry
India Income Tax Returnptpl_india_itrExtract data from Indian ITR forms
IRS Form 1040ptpl_irs_1040Extract U.S. Individual Income Tax Return data
IRS Form 1095-Aptpl_irs_1095aExtract Health Insurance Marketplace Statement data
KSA Tax Registrationptpl_ksa_tax_registrationExtract data from Saudi Arabia tax registration documents
UK Council Tax Billptpl_uk_council_tax_billExtract data from UK council tax bills
UK P45 Leaving Certificateptpl_uk_p45Extract data from UK P45 forms
UK P60 End of Year Certificateptpl_uk_p60Extract data from UK P60 tax forms

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

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

# 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