UpStart Commerce Search
Recommendations
Get Recommended Items
5min
the get recommended items endpoint is a powerful recommendation engine that utilizes machine learning, matrix factorization, and user feedback to provide accurate and relevant item suggestions by integrating these techniques, the api enhances customer engagement and boosts sales conversions key features personalized engagement – tailors recommendations based on user behavior diverse suggestions – expands product discovery with varied options scalability & real time adaptation – ensures seamless performance for large scale operations increased conversions – drives higher sales through accurate recommendations accessing recommended items retailers can retrieve recommended product suggestions via the get recommended items api api details endpoint get https //api upstartcommerce com/v1/catalog/live/recommendation/item/{catalogitemid} headers { "x upstart tenant" "yourtenant", "x upstart site" "your site id", "authorization" "bearer your auth token" } path parameters catalogitemid (string, required) – unique identifier for a catalog item query parameters recommendationtype (string, optional) – type of recommendation to retrieve allowed values frequently bought, visually similar, similar example request curl request get \\ url https //api upstartcommerce com/v1/catalog/live/recommendation/item/{catalogitemid} \\ header 'accept application/json' \\ header 'authorization bearer 123' \\ header 'x upstart site your site id' \\ header 'x upstart tenant yourtenant' example response \[ { "id" "123456", "name" "example reclining loveseat", "brandname" "furnitureco", "avgrating" 4 62, "numreviews" 17, "manufacturername" "bestmakers", "price" { "currency" "usd", "value" 499 99 }, "media" { "uri" "https //example com/images/item123456 jpg", "alttext" "example reclining loveseat" } }, { "id" "789101", "name" "premium loveseat", "brandname" "homecomfort", "avgrating" 4 8, "numreviews" 25, "manufacturername" "topfurniture", "price" { "currency" "usd", "value" 599 99 }, "media" { "uri" "https //example com/images/item789101 jpg", "alttext" "premium loveseat" } } ]