# Brands For You

> Source: https://docs.recombee.com/recipes/e-commerce/fully-personalized-homepage/brands-for-you

> For the complete documentation index, see [llms.txt](/llms.txt).

**Table of contents**

* [Introduction](#introduction)
* [Segmentation Setup](#segmentation-setup)
* [Scenario Setup](#scenario-setup)
* [Logic](#logic)
* [Requesting Recommendations](#requesting-recommendations)

# Brands For You

![](/img/recipes/e-commerce/brands-for-you.png) 

## Introduction

Get personalized brand recommendations tailored to your unique preferences and interests. Whether you're into fashion, technology, or lifestyle, our recommendation engine is designed to help users discover brands that match their style and needs effectively.

## Segmentation Setup

Most of the recommendation rows on the homepage feature products; however, in this case, we want to recommend brands based on the user’s browsing history.

In the Recombee Admin UI, navigate to the **[Segmentations](/segmentations)** section and choose **Create**.

1. Choose **Segmentation Type** \- _Property-based_
2. Pick **Property** from the list that contains the property that determines the brand

![Admin UI - Segmentation Setup](/img/recipes/e-commerce/brands-for-you-segmentation-setup.png)

After picking the property, a preview opens up, and you can see the brands and the number of items per brand.

![Admin UI - Segmentation Setup - Preview](/img/recipes/e-commerce/brands-for-you-segmentation-setup-preview.png)

Then confirm the settings by hitting the **Create** button.

You have now created the Segmentation based on the brand, and you can proceed to recommend the brands (=Segments) to the user.

## Scenario Setup

In the Recombee Admin UI, navigate to the **[Scenarios](/scenarios)** section and choose **Create Scenario**.

1. Enter a **Scenario ID**, such as _"brands-for-you"_
2. Choose **Recommendation type** \- _[Item Segments to User](/api#recommend-item-segments-to-user)_
3. Continue and choose **Results Segmentation** \- _brands Segmentation_ created in the previous step

![Admin UI - Scenario Setup](/img/recipes/e-commerce/brands-for-you-create-scenario.png)

## Logic

The [Logic](/recommendation_logics) defines the behavior of the recommendation engine.

* Choose the **[recombee:default](/recommendation_logics#recombee-default)** logic type from the **Universal Models**

This particular Logic returns the Segments (=brands) in personalized order to give the user the most suitable brand according to the user’s previous interactions.

![Admin UI - Logic](/img/recipes/e-commerce/brands-for-you-logic.png)

## Requesting Recommendations

You shall request the [Recommend Items Segments to User endpoint](/api#recommend-item-segments-to-user) of the Recombee API using an [SDK of your choice](/api_clients).

For more information, navigate to the Integration tab of the Scenario in the Admin UI.