GET
{micro_service_base_url}
/
inventory
/
store
/
{store_id}
/
item
/
{store_item_id}
/
recommended-products
{
  "recommendations": [
    {
      "id": "<string>",
      "item_id": "<string>",
      "store_id": "<string>",
      "images": [
        {}
      ],
      "name": "<string>",
      "description": "<string>",
      "size": "<string>",
      "price": "<string>",
      "unit_count": "<string>",
      "sell_independently": true,
      "active": true,
      "quantity": 123,
      "completed": true
    }
  ]
}
This endpoint returns product recommendations based on the specified store item. The recommendations are typically generated based on purchasing patterns, product categories, and other relevant factors.
Recommended products are automatically generated by the system based on various factors including customer behavior and product relationships.

Path Parameters

store_id
string
required
The unique identifier of the store
store_item_id
string
required
The unique identifier of the item for which to get recommendations

Response

recommendations
array
Array of recommended product objects

Response Example

[
  {
    "id": "4e634630-cf39-4a68-b74a-f4c631eaeb11",
    "item_id": "bf9480e2-7ae1-4085-b72b-0141695a4fcb",
    "store_id": "449235c1-3d04-4519-998b-40d2a621e5e0",
    "images": [
      "https://lula-inventory-service-staging.s3.amazonaws.com/images/449235c1-3d04-4519-998b-40d2a621e5e0/Snacks/4e634630-cf39-4a68-b74a-f4c631eaeb11_1730116849516.webp"
    ],
    "name": "Keebler Big Snack Pack Club Cheddar Sandwich Crackers",
    "description": "1.8 oz",
    "size": "1.8 oz",
    "price": "0.99",
    "unit_count": "",
    "sell_independently": true,
    "active": true,
    "quantity": 1,
    "completed": true
  },
  {
    "id": "7bff1fcd-ee1f-4e38-a80c-b90d68d56502",
    "item_id": "1a1cf0c9-4036-45e2-bfb3-ccd032d634d6",
    "store_id": "449235c1-3d04-4519-998b-40d2a621e5e0",
    "images": [
      "https://lula-inventory-service-staging.s3.amazonaws.com/images/449235c1-3d04-4519-998b-40d2a621e5e0/Snacks/7bff1fcd-ee1f-4e38-a80c-b90d68d56502_1730116813067.webp"
    ],
    "name": "Slim Jim Monster Size Smoked Snack Stick Tabasco",
    "description": "1.94 oz",
    "size": "1.94 oz",
    "price": "3.49",
    "unit_count": "",
    "sell_independently": true,
    "active": true,
    "quantity": 1,
    "completed": true
  }
]
Use recommended products to create cross-selling opportunities and improve customer experience by suggesting relevant items.
The recommendation algorithm considers factors like product categories, customer purchase history, and seasonal trends to provide relevant suggestions.