> ## Documentation Index
> Fetch the complete documentation index at: https://docs.salesive.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get shop brand

> Retrieve shop brand information (name and logo).

## Request

```http theme={null}
GET /shops/68b8f52575da81b332af29f1/brand
```

## Path parameters

| Parameter | Type   | Required | Description                                                                             |
| --------- | ------ | -------- | --------------------------------------------------------------------------------------- |
| `shopId`  | string | Yes      | Shop **id** or storefront **domain**. The id is tried first, then resolved as a domain. |

<Note>
  This endpoint does not require authentication. It is used for displaying shop branding on public pages.
</Note>

## Successful response

```json theme={null}
{
    "status": 200,
    "success": true,
    "message": "Shop brand found",
    "data": {
        "name": "Salesive Store",
        "logo": "https://cdn.salesive.com/shops/logo.png"
    }
}
```

## Error response

```json theme={null}
{
    "status": 404,
    "success": false,
    "message": "Shop not found",
    "data": {}
}
```


## OpenAPI

````yaml GET /shops/{shopId}/brand
openapi: 3.1.0
info:
  title: Salesive Store API
  description: >-
    REST interface for querying products, categories, and merchandising banners
    exposed by Salesive storefronts.
  version: 1.0.0
servers:
  - description: Production
    url: https://store.salesive.com/api/v1
security:
  - BearerAuth: []
    ShopIdHeader: []
paths:
  /shops/{shopId}/brand:
    get:
      summary: Get shop brand
      description: Retrieve shop brand information (name and logo).
      parameters:
        - name: shopId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Brand information retrieved
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT issued by the Salesive Store API for authenticated shoppers.
    ShopIdHeader:
      type: apiKey
      in: header
      name: x-shop-id
      description: >-
        Optional storefront identifier sent as a header to scope responses to a
        specific shop. Try It requests remember this value once provided.

````