Skip to main content

General Templates

Versatile templates for common document types. Structurify provides 4 templates for this category.

Available Templates

TemplateIDDescription
General Correspondenceptpl_correspondenceExtract metadata from letters and emails
Meeting Notesptpl_meeting_notesExtract action items from meeting transcripts
Research Papersptpl_researchExtract metadata from academic papers
Species Identificationptpl_species_identificationIdentify wildlife species and detect injuries from images

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

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

# 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