Pharma & Life Sciences Templates
Drug approvals, clinical trials, and pharmaceutical documents. Structurify provides 5 templates for this category.
Available Templates
| Template | ID | Description |
|---|---|---|
| Clinical Trial Protocol | ptpl_clinical_trial_protocol | Extract key data from clinical trial protocols and study designs |
| Adverse Event Report | ptpl_adverse_event_report | Extract data from adverse event and pharmacovigilance reports |
| FDA 483 Observations | ptpl_fda_483 | Extract observations from FDA Form 483 inspection reports |
| Batch Production Record | ptpl_batch_record | Extract data from pharmaceutical batch manufacturing records |
| Stability Study Report | ptpl_stability_study | Extract 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
- Run in Google Colab - Interactive notebooks
- CodeSandbox Examples - Node.js examples