Skip to main content

Trade Finance Templates

Letters of credit, bank guarantees, and trade documents. Structurify provides 6 templates for this category.

Available Templates

TemplateIDDescription
Letter of Credit (LC)ptpl_letter_of_creditExtract data from documentary letters of credit
Bank Guaranteeptpl_bank_guaranteeExtract data from bank guarantees and standby letters of credit
Bill of Exchange / Draftptpl_bill_of_exchangeExtract data from bills of exchange and trade drafts
Commercial Invoice (Trade)ptpl_trade_invoiceExtract data from commercial invoices for trade finance and customs
Packing Credit / Pre-Export Financeptpl_packing_creditExtract data from packing credit and pre-export financing documents
SWIFT MT103 (Wire Transfer)ptpl_swift_mt103Extract payment details from SWIFT MT103 single customer credit transfer message

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

# Create project with template
project = client.projects.create(
name="My Trade Finance Project",
template_id="ptpl_letter_of_credit"
)

# 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