The Recommendations API allows users to promote and recommend items to their customers. Users can get item recommendations from catalogs on their site using algorithms provided by installed apps.
Note: Currently, the Recommendations API is for use with Wix Stores only.
With the Recommendations API, you can:
Algorithms are programs that identify and return a set of item recommendations based on a catalog. There are different types of algorithms, identified by their algorithmType
that calculate different kinds of recommendations. For example, Algorithms with the algorithmType
of RELATED_ITEMS
also take a list of items as input and use those to calculate recommendations.
For example, Wix Stores provides the following algorithms:
Name | Description | Algorithm Type |
---|---|---|
“From the same categories” | Returns items that share the most categories with items in the list provided. | RELATED_ITEMS |
“Frequently bought together” | Returns items that are frequently bought together with the first item in the list provided. | RELATED_ITEMS |
“Frequently viewed together” | Returns items that are frequently viewed together with the first item in the list provided. | RELATED_ITEMS |
“Best sellers” | Returns the items from the catalog with the highest number of sales. | GLOBAL |
Show bestselling products from a Wix site in your app.
This article shares a possible use case your app could support, as well as an example flow that could support the use case. You're certainly not limited to this use case, but it may be a helpful jumping-off point as you plan your app's implementation.
In this scenario, you are selling products through multiple channels, one of which is a website using Wix Stores. You want your app to showcase the bestselling items from each of your channels. To show the bestselling items from the Wix Stores catalog in your app, follow this basic flow:
List Available Algorithms
to get the algorithmId
of the "Best sellers" algorithm.Get Recommendation
with the algorithmId
from step 1. Use the Wix Stores app ID (215238eb-22a5-4c36-9e7b-e7c08025e04e
) in the algorithm object.Get Recommendation
, call Get Product
in the Wix Stores Catalog API using the recommended item’s catalogItemId
.Get Product
, display the bestselling items in your app.