Fetch a brand

Fetch a single brand and its related products. Deprecated. Use https://graphql.enad.io instead.

GET/api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id
API
Shopper
Updated
Apr 26, 2026

shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id

Fetch a single brand and its related products. Deprecated. Use https://graphql.enad.io instead.

API ownership

  • API family: Shopper API
  • Best for: Public storefront catalog reads and shopper-facing product discovery.
  • Prefer Search API for: New product discovery, facets, autocomplete, and other search-heavy storefront flows.
  • Do not use from: Trusted admin integrations that create, update, or delete merchant-owned data.
  • Guide route: /apis/shopper/latest

The OpenAPI contract defines the method, path, parameters, request body, and responses for this operation.

Operation

  • Method: GET
  • Path: /api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id
  • Summary: Fetch a brand
  • Description: Fetch a single brand and its related products. Deprecated. Use https://graphql.enad.io instead.
  • OpenAPI contract: shopper-api
  • Operation ID: Not documented in the OpenAPI contract.

Operation key uses API family, method, and path because this OpenAPI contract does not publish an operation ID.

Parameters6 parameters
NameInRequiredTypeDescription
app_idpathYesstringApp ID
store_grouppathYesstringStore group
marketpathYesstringMarket
localepathYesstringLocale
brand_idpathYesstringBrand ID
only_activequeryNobooleanOnly active products
Request bodyNo documented body

Not documented in the OpenAPI contract.

Responses4 statuses
StatusDescriptionContent
200Brand with productsapplication/json (object)
400Invalid app ID or brand IDapplication/json (object)
404Brand not foundapplication/json (object)
500Internal server errorapplication/json (object)

200 - object

Brand With Paginated Products Response

PropertyTypeRequiredDetails
dataobjectNo-
Brand With Paginated Products
PropertyTypeRequiredDetails
addressobjectNo-
cover_urlstringNo-
descriptionstringNo-
idstringYes-
logo_urlstringNo-
namestringYes-
productsobjectNo-
seriesobject[]No-
slugstringYes-
Brand Address
PropertyTypeRequiredDetails
citystringNo-
co_addressstringNo-
countrystringNo-
emailstringNo-
house_numberstringNo-
postal_codestringNo-
state_provincestringNo-
street_addressstringNo-
PropertyTypeRequiredDetails
dataobject[]No-
pageintegerNo-
totalintegerNo-
total_pagesintegerNo-
Series
PropertyTypeRequiredDetails
cover_urlstringNo-
descriptionstringNo-
idstringYes-
logo_urlstringNo-
namestringYes-
slugstringYes-
{
  "data": {
    "address": {
      "city": "string",
      "co_address": "string",
      "country": "string",
      "email": "string",
      "house_number": "string",
      "postal_code": "string",
      "state_province": "string",
      "street_address": "string"
    },
    "cover_url": "string",
    "description": "string",
    "id": "string",
    "logo_url": "string",
    "name": "string",
    "products": {
      "data": [
        {
          "attributes": null,
          "brands": null,
          "categories": null,
          "collections": null,
          "created_at": null,
          "custom_fields": null,
          "description": null,
          "files": null,
          "html_description": null,
          "html_short_description": null,
          "id": null,
          "images": null,
          "in_stock": null,
          "is_active": null,
          "meta_description": null,
          "meta_title": null,
          "product_name": null,
          "product_number": null,
          "rank": null,
          "redirects": null,
          "related_products": null,
          "short_description": null,
          "slug": null,
          "slug_translations": null,
          "status": null,
          "tags": null,
          "third_party_links": null,
          "updated_at": null,
          "variants": null,
          "videos": null
        }
      ],
      "page": 0,
      "total": 0,
      "total_pages": 0
    },
    "series": [
      {
        "cover_url": "string",
        "description": "string",
        "id": "string",
        "logo_url": "string",
        "name": "string",
        "slug": "string"
      }
    ],
    "slug": "string"
  }
}

400 - object

Error Message

PropertyTypeRequiredDetails
messagestringNo-

Generated example (synthetic):

{
  "message": "string"
}

404 - object

Error Message

PropertyTypeRequiredDetails
messagestringNo-

Generated example (synthetic):

{
  "message": "string"
}

500 - object

Error Message

PropertyTypeRequiredDetails
messagestringNo-

Generated example (synthetic):

{
  "message": "string"
}

Contract identity

Use these fields to confirm you are implementing the intended endpoint contract.

  • API family: Shopper API
  • Method: GET
  • Path: /api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id
  • Operation ID: Not documented in the OpenAPI contract.
  • OpenAPI tag: Brands
  • OpenAPI summary: Fetch a brand

Fetch a brand

# Fetch a brand Fetch a single brand and its related products. Deprecated. Use https://graphql.enad.io instead.
GET /api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id
Purpose

Fetch a single brand and its related products.

Required inputs

app_id path store_group path market path locale path brand_id path

Primary response

200 ยท Brand with products

Operation key

shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id

## API ownership - API family: Shopper API - Best for: Public storefront catalog reads and shopper-facing product discovery. - Prefer Search API for: New product discovery, facets, autocomplete, and other search-heavy storefront flows. - Do not use from: Trusted admin integrations that create, update, or delete merchant-owned data. - Guide route: [/apis/shopper/latest](/apis/shopper/latest) The OpenAPI contract defines the method, path, parameters, request body, and responses for this operation. ## Operation - Method: `GET` - Path: `/api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id` - Summary: Fetch a brand - Description: Fetch a single brand and its related products. Deprecated. Use https://graphql.enad.io instead. - OpenAPI contract: shopper-api - Operation ID: Not documented in the OpenAPI contract. - Stable operation key: `shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id` Operation key uses API family, method, and path because this OpenAPI contract does not publish an operation ID. ## Parameters | Name | In | Required | Type | Description | | --- | --- | --- | --- | --- | | app_id | path | Yes | string | App ID | | store_group | path | Yes | string | Store group | | market | path | Yes | string | Market | | locale | path | Yes | string | Locale | | brand_id | path | Yes | string | Brand ID | | only_active | query | No | boolean | Only active products | ## Request body Not documented in the OpenAPI contract. ## Responses | Status | Description | Content | | --- | --- | --- | | 200 | Brand with products | application/json (object) | | 400 | Invalid app ID or brand ID | application/json (object) | | 404 | Brand not found | application/json (object) | | 500 | Internal server error | application/json (object) | ### 200 - object #### Brand With Paginated Products Response | Property | Type | Required | Details | | --- | --- | --- | --- | | `data` | object | No | - | ##### Brand With Paginated Products | Property | Type | Required | Details | | --- | --- | --- | --- | | `address` | object | No | - | | `cover_url` | string | No | - | | `description` | string | No | - | | `id` | string | Yes | - | | `logo_url` | string | No | - | | `name` | string | Yes | - | | `products` | object | No | - | | `series` | object[] | No | - | | `slug` | string | Yes | - | ##### Brand Address | Property | Type | Required | Details | | --- | --- | --- | --- | | `city` | string | No | - | | `co_address` | string | No | - | | `country` | string | No | - | | `email` | string | No | - | | `house_number` | string | No | - | | `postal_code` | string | No | - | | `state_province` | string | No | - | | `street_address` | string | No | - | ##### Paginated Product With Short Related Product List | Property | Type | Required | Details | | --- | --- | --- | --- | | `data` | object[] | No | - | | `page` | integer | No | - | | `total` | integer | No | - | | `total_pages` | integer | No | - | ##### Series | Property | Type | Required | Details | | --- | --- | --- | --- | | `cover_url` | string | No | - | | `description` | string | No | - | | `id` | string | Yes | - | | `logo_url` | string | No | - | | `name` | string | Yes | - | | `slug` | string | Yes | - |
Generated example (synthetic) ```json { "data": { "address": { "city": "string", "co_address": "string", "country": "string", "email": "string", "house_number": "string", "postal_code": "string", "state_province": "string", "street_address": "string" }, "cover_url": "string", "description": "string", "id": "string", "logo_url": "string", "name": "string", "products": { "data": [ { "attributes": null, "brands": null, "categories": null, "collections": null, "created_at": null, "custom_fields": null, "description": null, "files": null, "html_description": null, "html_short_description": null, "id": null, "images": null, "in_stock": null, "is_active": null, "meta_description": null, "meta_title": null, "product_name": null, "product_number": null, "rank": null, "redirects": null, "related_products": null, "short_description": null, "slug": null, "slug_translations": null, "status": null, "tags": null, "third_party_links": null, "updated_at": null, "variants": null, "videos": null } ], "page": 0, "total": 0, "total_pages": 0 }, "series": [ { "cover_url": "string", "description": "string", "id": "string", "logo_url": "string", "name": "string", "slug": "string" } ], "slug": "string" } } ```
### 400 - object #### Error Message | Property | Type | Required | Details | | --- | --- | --- | --- | | `message` | string | No | - | **Generated example (synthetic):** ```json { "message": "string" } ``` ### 404 - object #### Error Message | Property | Type | Required | Details | | --- | --- | --- | --- | | `message` | string | No | - | **Generated example (synthetic):** ```json { "message": "string" } ``` ### 500 - object #### Error Message | Property | Type | Required | Details | | --- | --- | --- | --- | | `message` | string | No | - | **Generated example (synthetic):** ```json { "message": "string" } ``` ## Contract identity Use these fields to confirm you are implementing the intended endpoint contract. - API family: Shopper API - Method: `GET` - Path: `/api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id` - Operation ID: Not documented in the OpenAPI contract. - Stable operation key: `shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/brands/:brand_id` - OpenAPI tag: Brands - OpenAPI summary: Fetch a brand