Skip to main content

Business Intelligence Templates

Market research and competitive analysis. Structurify provides 2 templates for this category.

Available Templates

TemplateIDDescription
Brand Monitoring & Mentionsptpl_brand_monitorExtract brand mentions, sentiment, and competitive intelligence from screenshots
Competitive Intelligenceptpl_competitive_intelExtract product features, pricing, and positioning from competitor screenshots,

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

# Create project with template
project = client.projects.create(
name="My Business Intelligence Project",
template_id="ptpl_brand_monitor"
)

# 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