Logistics & Trade Templates
Bills of lading, customs, and shipping documents. Structurify provides 7 templates for this category.
Available Templates
| Template | ID | Description |
|---|---|---|
| Air Waybill | ptpl_air_waybill | Extract data from air waybills (AWB) |
| Bill of Lading | ptpl_bill_of_lading | Extract data from ocean/freight bills of lading |
| Certificate of Origin | ptpl_certificate_of_origin | Extract data from certificates of origin for customs and trade compliance |
| Delivery Note | ptpl_delivery_note | Extract data from delivery notes and proof of delivery |
| Packing List | ptpl_packing_list | Extract data from commercial packing lists |
| Automotive Repair Order | ptpl_auto_repair_order | Extract vehicle data, labor, and line-item parts from automotive service invoice |
| Shipper's Letter of Instruction (SLI) | ptpl_shipper_letter | Extract export documentation instructions from Shipper's Letters of Instruction |
Example Usage
from structurify import Structurify
client = Structurify(api_key="sk_live_xxx")
# Create project with template
project = client.projects.create(
name="My Logistics & Trade Project",
template_id="ptpl_air_waybill"
)
# 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