Skip to main content

Education Templates

Academic and research administration documents. Structurify provides 1 templates for this category.

Available Templates

TemplateIDDescription
Grant Notice of Award (NOA)ptpl_grant_noaExtract funding amounts, dates, and terms from federal Grant Notices of Award (N

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

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

# 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