Query PPWR (Packaging and Packaging Waste Regulation) compliance data — packaging units, bill of materials, substance declarations, recyclability, gap analysis, and compliance evaluations. These tools support EU packaging regulation workflows.
PPWR tools cover the packaging compliance pillar. All endpoints use API v2 (/v2/ppwr/). Use list_projects first to find the project ID containing your packaging data.
Evaluate PPWR compliance for a single packaging unit. Returns pass/fail checks against specific PPWR articles, a timeline of upcoming deadlines, and overall compliance status.Parameters:
Analyze compliance gaps for a packaging unit using a traffic-light severity system. Each gap identifies a specific PPWR requirement that is not met, with the affected BOM components and required actions.Parameters:
Parameter
Type
Required
Default
Description
packaging_unit_id
string
Yes
—
Packaging unit UUID
Example response:
{ "packaging_unit_id": "a1b2c3d4-...", "packaging_unit_name": "Premium Wine Box", "overall_risk": "yellow", "gaps": [ { "code": "PFAS_NO_DECLARATION", "severity": "red", "category": "substances", "article": "Art. 5(4)", "description": "No PFAS declaration for food-contact packaging", "deadline": "2026-12-31", "action_required": "Obtain PFAS test certificate from supplier", "affected_components": ["Inner liner"] }, { "code": "RECYCLED_CONTENT_MISSING", "severity": "yellow", "category": "recycled_content", "article": "Art. 7(1)", "description": "Recycled content not declared for 2 BOM items", "action_required": "Request recycled content data from suppliers", "affected_components": ["Outer carton", "Closure"] } ], "total_red": 1, "total_yellow": 1, "total_green": 0}
Key response fields:
Field
Description
overall_risk
Worst-case severity across all gaps: red > yellow > green
gaps[].severity
Traffic-light risk: red (blocking), yellow (at risk), green (minor)
gaps[].category
Gap area: substances, recycled_content, recyclability, material, labeling
gaps[].affected_components
BOM item names affected by this gap
Example prompts:
"What compliance gaps does this packaging unit have?""Are there any red-severity gaps?""What actions are required to close the gaps?"
Get PPWR compliance dashboard metrics for a project — a high-level overview of packaging compliance health including substance safety, recycled content, recyclability grades, and supplier survey progress.Parameters: