> For the complete documentation index, see [llms.txt](https://tech.x2bee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tech.x2bee.com/api-guide/api-guides-en/store-front-api/main-and-full-menu/brand-list-and-main.md).

# Brand List & Main

Through the brand list page registered in online commerce, various brand content can be exposed. Selecting a brand provides information about that brand and a feature to browse that brand's products. Through this API, users can view information about a specific brand.

***

{% columns %}
{% column %}

<p align="center"><strong>PC</strong></p>

<figure><img src="https://2999922013-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FXTxKSWMmuxEkop1pvuwe%2Fuploads%2FUWXVxfP0qzfyLT8pa3CH%2Fimage-20240416-043004.png?alt=media&#x26;token=e5b1caa6-6e35-4fd5-8371-29f5b3ac2c04" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column %}

<p align="center"><strong>Mobile</strong></p>

<figure><img src="https://2999922013-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FXTxKSWMmuxEkop1pvuwe%2Fuploads%2FzAoxEO70c8dYtnL2fLAd%2Fimage-20240416-043000.png?alt=media&#x26;token=bd2476b0-328d-4f5d-b711-5dd097442e06" alt=""><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

***

## Look Up Brand List <a href="#plus" id="plus"></a>

<div align="center"><figure><img src="https://tech.x2bee.com/download/attachments/266109482/%EC%8A%A4%ED%86%A0%EC%96%B4%20%ED%94%84%EB%A1%A0%ED%8A%B8%20%ED%99%9C%EC%9A%A9%ED%95%98%EA%B8%B0-%EB%B8%8C%EB%9E%9C%EB%93%9C%EB%AA%A9%EB%A1%9D.drawio.png" alt="" width="563"><figcaption></figcaption></figure></div>

### 1. Look Up Brand List Information <a href="#id-1" id="id-1"></a>

Selecting Brand in the top menu lets you view the brand list page.\
This information is retrieved as unstructured basic information according to the store information.

* **Look up store information (**[🔗View API >](https://api.x2bee.com/content?msa=display\&depth=%EC%A0%84%EC%8B%9C%EB%A7%A4%EC%9E%A5/getShopInfoByShopNo))\
  Looks up store information (unstructured, category, brand store) and the corner information for that store by store number.

```
GET /v1/shop/{shopNo} 
```

#### 1-1. Recommended Brand Corner <a href="#id-1-1" id="id-1-1"></a>

Groups images and text you want to expose and displays them together.\
Clicking navigates to the configured linked URL.

#### 1-2. All Brands Corner <a href="#id-1-2" id="id-1-2"></a>

Can display up to 24 brands.\
Clicking navigates to the configured linked URL; if no linked URL is entered, it navigates to that brand's store.

#### 1-3. Best Brand Corner <a href="#id-1-3" id="id-1-3"></a>

Can display up to 3 best brand corners, each a set of image, brand, and text groups.\
Clicking the image banner navigates to the configured linked URL, and clicking a product navigates to the product detail page.

#### 1-4. New Brand Corner <a href="#id-1-4" id="id-1-4"></a>

Can display up to 10 images and brands you want to expose.\
Clicking navigates to the configured linked URL.

## Look Up Brand Main <a href="#plus" id="plus"></a>

<div align="center"><img src="https://tech.x2bee.com/download/attachments/266109482/FO%20API%20%ED%99%9C%EC%9A%A9%ED%95%98%EA%B8%B0-%EB%B8%8C%EB%9E%9C%EB%93%9C%20%EB%A9%94%EC%9D%B8.drawio.png" alt=""></div>

### 1. Look Up Brand Store <a href="#id-1" id="id-1"></a>

You can implement a sub-main page on the site to promote and display a store for each product brand.

* **Look up brand store information (**[🔗View API >](https://api.x2bee.com/content?msa=display\&depth=%EC%A0%84%EC%8B%9C%EB%A7%A4%EC%9E%A5/getShopInfoByBrandNo))\
  Looks up store information by brand number.

```
GET /v1/shop/brand/{brandNo} 
```

### 2. Add/Remove Wishlist <a href="#id-2" id="id-2"></a>

On the brand page, you can add or remove that brand from your wishlist.

* **Add to wishlist (** [🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%EC%9C%84%EC%8B%9C%EB%A6%AC%EC%8A%A4%ED%8A%B8\&path=registerWishlist))\
  Adds that brand to the logged-in user's wishlist

```
POST /v1/front/wishlist   
```

* **Remove from wishlist (**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%EC%9C%84%EC%8B%9C%EB%A6%AC%EC%8A%A4%ED%8A%B8\&path=deleteWishList))\
  Removes that brand from the logged-in user's wishlist

```
DEL /v1/front/wishlist   
```
