> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Recommendations ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-ecom-backend/recommendations/introduction.md ## Article Content: # Introduction
__Tip:__ If you want to display item recommendations on your site, you can use the Wix Stores [“Slider Product Gallery”](https://support.wix.com/en/article/wix-stores-adding-store-elements#slider-product-gallery) and [“Related Products”](https://support.wix.com/en/article/wix-stores-adding-a-related-products-gallery) elements. These elements use Recommendations API functionality without the need for manual coding. In these elements' settings, you can choose which algorithm to use from among those available on your site. On your Product, Cart, and Thankyou pages you can use `RELATED_ITEMS` type algorithms to get recommendations related to the product/s shown on the page. On other pages, you can get recommendations from `GLOBAL` type algorithms.## Before you begin * You must have a Wix app that provides algorithms installed on your site, and you must have a Wix app whose catalogs are supported by those algorithms installed on your site. For more information see [`listAvailableAlgorithms()`](https://www.wix.com/velo/reference/wix-ecom-backend/recommendations/listavailablealgorithms). Currently, the only app providing algorithms and their supported catalogs is Wix Stores. * No caching is implemented, so repeat calls take the same time to complete as the first call. We To use the Recommendations API, import `{ recommendations }` from `wix-ecom-backend`: ```js import { recommendations } from 'wix-ecom-backend'; ``` ## Use cases [Send emails to customers recommending related products.](https://www.wix.com/velo/reference/wix-ecom-backend/recommendations/sample-flow) ## Terminology * **Catalog:** A set of products or services available for purchase in a Wix app. For example, a set of products in Wix Stores. * **Algorithm:** A program implemented by a Wix app, such as Wix Stores, which returns a list of item recommendations. ## Permissions information Functions in the Recommendations API are restricted and only run if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
Warning: Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.