Business Intelligence Templates
Market research and competitive analysis. Structurify provides 2 templates for this category.
Available Templates
| Template | ID | Description |
|---|---|---|
| Brand Monitoring & Mentions | ptpl_brand_monitor | Extract brand mentions, sentiment, and competitive intelligence from screenshots |
| Competitive Intelligence | ptpl_competitive_intel | Extract 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
- Run in Google Colab - Interactive notebooks
- CodeSandbox Examples - Node.js examples