Skip to main content

Analytics Templates

Customer experience and analytics documents. Structurify provides 1 templates for this category.

Available Templates

TemplateIDDescription
Customer Feedback Analysisptpl_customer_feedbackAnalyze customer surveys, support tickets, reviews, and NPS responses for themes

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

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

# 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