Size Recommender
Display AI-powered size recommendations on product detail pages to help customers choose the right size and reduce size-related returns.
Last updated
Was this helpful?
Display AI-powered size recommendations on product detail pages to help customers choose the right size and reduce size-related returns.
The Size Recommender analyzes historical return data and customer feedback to generate size-fit guidance for individual products. It helps shoppers understand whether an item runs small, true to size, or large, and provides an AI-generated summary of what other customers have experienced.
Data collection — parcelLab aggregates return reasons and customer feedback across your order history.
Analysis — The system calculates a fit position and confidence score for each product based on return patterns.
AI summary — An LLM generates a plain-language summary of customer sizing feedback.
Display — The recommendation is shown on the product detail page (PDP) via the embeddable UI widget or your own custom integration using the API.
REST endpoint that returns fit category, confidence score, fit position, and customer feedback summary for a given product.
Open-source reference implementation from the Selection Guide UI module in the parcelLab Embedded UI Snippets repository. It renders recommendations on your PDP and supports multiple locales, configurable missing-data handling, and per-section visibility controls.
Reduce size-related returns — Give customers confidence in their size choice before they buy.
Improve conversion — Shoppers who see fit guidance are more likely to complete a purchase.
Surface customer insights — Show aggregated feedback like "runs small in the waist" directly on the PDP.
Customize the experience — Match the widget's appearance to your brand with themes, colors, layout options, and visibility controls.
Add the UI widget to your product detail page using a simple script tag and HTML attribute:
See the UI Plugin documentation for full configuration and customization options.
You can also preview configurations and copy working embed code from the live demo, which is maintained in the Selection Guide UI module.
Last updated
Was this helpful?
Was this helpful?
curl "https://api.parcellab.com/v4/size-recommender/recommendation/YOUR_PRODUCT_ID/?account_id=YOUR_ACCOUNT_ID"<div
data-size-recommender
data-account-id="YOUR_ACCOUNT_ID"
data-product-id="YOUR_PRODUCT_ID"
></div>
<script
src="https://cdn.parcellab.com/js/selection-guide-ui/v1/size-recommender.iife.js"
defer
></script>