Skip to main content

Pharma & Life Sciences Templates

Drug approvals, clinical trials, and pharmaceutical documents. Structurify provides 5 templates for this category.

Available Templates

TemplateIDDescription
Clinical Trial Protocolptpl_clinical_trial_protocolExtract key data from clinical trial protocols and study designs
Adverse Event Reportptpl_adverse_event_reportExtract data from adverse event and pharmacovigilance reports
FDA 483 Observationsptpl_fda_483Extract observations from FDA Form 483 inspection reports
Batch Production Recordptpl_batch_recordExtract data from pharmaceutical batch manufacturing records
Stability Study Reportptpl_stability_studyExtract data from pharmaceutical stability study reports

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

# Create project with template
project = client.projects.create(
name="My Pharma & Life Sciences Project",
template_id="ptpl_clinical_trial_protocol"
)

# 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