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

# /2027-01/retail-media/catalog/merchants/{merchant-id}/brands

> List the brands extracted from the catalogs of a retail media merchant, ordered by brand id.



## OpenAPI

````yaml https://api.criteo.com/2027-01/retailmedia/open-api-specifications.json get /2027-01/retail-media/catalog/merchants/{merchant-id}/brands
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - RetailMedia
  version: 2027-01
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Accounts
  - name: Analytics
  - name: Audience
  - name: Balance
  - name: Billing
  - name: Campaign
  - name: Catalog
  - name: Gateway
paths:
  /2027-01/retail-media/catalog/merchants/{merchant-id}/brands:
    get:
      tags:
        - Catalog
      summary: /2027-01/retail-media/catalog/merchants/{merchant-id}/brands
      description: >-
        List the brands extracted from the catalogs of a retail media merchant,
        ordered by brand id.
      operationId: GetCatalogBrands
      parameters:
        - name: include-inactive
          in: query
          description: >-
            Also return the brands that disappeared from the last extraction
            (status = inactive).
          schema:
            type: boolean
            default: false
        - name: limit
          in: query
          description: Maximum number of brands returned in the page.
          schema:
            maximum: 2000
            minimum: 1
            type: integer
            format: int32
            default: 2000
        - name: merchant-id
          in: path
          description: >-
            Identifies the retail media merchant whose catalog brands are
            listed.
          required: true
          schema:
            type: string
        - name: offset
          in: query
          description: >-
            Index of the first brand of the page, used to page through the
            collection.
          schema:
            type: integer
            format: int32
            default: 0
      responses:
        '200':
          description: The page of brands extracted from the catalogs of the merchant.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandListResponse'
      security:
        - oauth:
            - RetailMedia_Catalog_Read
components:
  schemas:
    BrandListResponse:
      required:
        - data
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/BrandResource'
          nullable: true
        errors:
          type: array
          items:
            $ref: '#/components/schemas/CommonProblem'
          nullable: true
          readOnly: true
        meta:
          $ref: '#/components/schemas/PaginationMetadata'
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/CommonProblem'
          nullable: true
          readOnly: true
      description: >-
        Paginated response holding the brands extracted from the catalogs of a
        merchant.
      nullable: true
    BrandResource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/Brand'
        id:
          type: string
          nullable: true
        type:
          type: string
          nullable: true
      description: Resource holding a brand extracted from the catalogs of a merchant.
      nullable: true
    CommonProblem:
      type: object
      properties:
        code:
          type: string
          description: A machine-readable error code, expressed as a string value.
          nullable: true
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem
          nullable: true
        instance:
          type: string
          description: A URI that identifies the specific occurrence of the problem.
          nullable: true
        source:
          type: object
          additionalProperties:
            type: string
          description: >-
            A machine-readable structure to reference to the exact location(s)
            causing the error(s)
          nullable: true
        stackTrace:
          type: string
          nullable: true
        title:
          type: string
          description: A short human-readable description of the problem type
          nullable: true
        traceId:
          type: string
          description: The request correlation ID this problem comes from.
          nullable: true
        traceIdentifier:
          type: string
          description: >-
            The request correlation ID this problem comes from. (deprecated, use
            traceId instead)
          nullable: true
        type:
          enum:
            - unknown
            - access-control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: The problem's category.
          nullable: true
      description: Common problem object.
    PaginationMetadata:
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        totalCount:
          type: integer
          format: int32
      description: Pagination applied to the returned collection.
      nullable: true
    Brand:
      type: object
      properties:
        brandName:
          type: string
          description: Brand name as found in the catalog.
          nullable: true
        componentId:
          type: integer
          description: >-
            Component the brand was extracted from. A brand name can exist on
            several components of a merchant.
          format: int32
        firstSeenDate:
          type: string
          description: First extraction the brand was seen in.
          format: date-time
        idCustomerBrand:
          type: string
          description: >-
            Stable identifier of the brand, kept for the lifetime of the brand
            even if it becomes inactive.
          nullable: true
        lastSeenDate:
          type: string
          description: Most recent extraction the brand was seen in.
          format: date-time
        merchantId:
          type: string
          description: Identifies the merchant the brand was extracted for.
          nullable: true
        productCount:
          type: integer
          description: Number of products carrying this brand in the last extraction.
          format: int64
        status:
          $ref: '#/components/schemas/BrandStatus'
      description: >-
        A brand extracted from the catalogs of a merchant, with the component it
        comes from and how many products carry it.
      nullable: true
    BrandStatus:
      enum:
        - active
        - inactive
      type: string
      description: Whether the brand was still present in the last catalog extraction.
      x-enumNames:
        - Active
        - Inactive
      x-enum-varnames:
        - Active
        - Inactive
  securitySchemes:
    oauth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://api.criteo.com/oauth2
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}

````