E-Commerce Templates
Product listings, marketplace documents, and retail. Structurify provides 1 templates for this category.
Available Templates
| Template | ID | Description |
|---|---|---|
| Product Catalog - Image to Listing | ptpl_product_catalog | Generate product descriptions, tags, and attributes from product images for e-co |
Example Usage
from structurify import Structurify
client = Structurify(api_key="sk_live_xxx")
# Create project with template
project = client.projects.create(
name="My E-Commerce Project",
template_id="ptpl_product_catalog"
)
# 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