Government Templates
Permits, licenses, and regulatory documents. Structurify provides 8 templates for this category.
Available Templates
| Template | ID | Description |
|---|---|---|
| US Customs Entry Summary 7501 | ptpl_cbp_7501 | Extract data from CBP Form 7501 customs entry |
| India Income Tax Return | ptpl_india_itr | Extract data from Indian ITR forms |
| IRS Form 1040 | ptpl_irs_1040 | Extract U.S. Individual Income Tax Return data |
| IRS Form 1095-A | ptpl_irs_1095a | Extract Health Insurance Marketplace Statement data |
| KSA Tax Registration | ptpl_ksa_tax_registration | Extract data from Saudi Arabia tax registration documents |
| UK Council Tax Bill | ptpl_uk_council_tax_bill | Extract data from UK council tax bills |
| UK P45 Leaving Certificate | ptpl_uk_p45 | Extract data from UK P45 forms |
| UK P60 End of Year Certificate | ptpl_uk_p60 | Extract 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
- Run in Google Colab - Interactive notebooks
- CodeSandbox Examples - Node.js examples