Skip to main content

Healthcare Templates

Medical records, claims, prescriptions, and clinical documents. Structurify provides 11 templates for this category.

Available Templates

TemplateIDDescription
Healthcare EDI Documentsptpl_edi_healthcareExtract data from EDI 835/837 healthcare transactions
Health Insurance Card USptpl_health_insurance_cardExtract data from US health insurance cards
Insurance Claimsptpl_insurance_claimExtract claim data from insurance documents
Laboratory Resultsptpl_lab_resultsExtract data from medical lab test results
Medical Recordsptpl_medical_recordsExtract clinical data from medical documents
Ontario Laboratory Requisitionptpl_ontario_lab_reqExtract data from Ontario lab requisition forms
Pharmacy Receiptptpl_pharmacy_receiptExtract data from pharmacy receipts and prescriptions
Medical Prescriptionptpl_prescriptionExtract data from medical prescriptions
Explanation of Benefits (EOB)ptpl_eobExtract payment and denial data from insurance Explanation of Benefits documents
Medical Referral Letterptpl_referral_letterExtract referral details from physician referral letters for prior authorization
Patient Intake Formptpl_patient_intakeExtract patient demographic and insurance information from intake forms for regi

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

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

# 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