Skip to main content

Logistics & Trade Templates

Bills of lading, customs, and shipping documents. Structurify provides 7 templates for this category.

Available Templates

TemplateIDDescription
Air Waybillptpl_air_waybillExtract data from air waybills (AWB)
Bill of Ladingptpl_bill_of_ladingExtract data from ocean/freight bills of lading
Certificate of Originptpl_certificate_of_originExtract data from certificates of origin for customs and trade compliance
Delivery Noteptpl_delivery_noteExtract data from delivery notes and proof of delivery
Packing Listptpl_packing_listExtract data from commercial packing lists
Automotive Repair Orderptpl_auto_repair_orderExtract vehicle data, labor, and line-item parts from automotive service invoice
Shipper's Letter of Instruction (SLI)ptpl_shipper_letterExtract 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