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

# Get Brands

> Get a list of your brands, ids, and external brand codes



## OpenAPI

````yaml /openapi.json get /api/brand/v1/facility/{facility_id}
openapi: 3.0.0
info:
  title: Authentication API
  description: API for user authentication and token generation
  version: 1.0.0
servers:
  - url: https://api.retailreadyai.com
    description: Production server
  - url: https://stg.retailreadyai.com
    description: Staging server
security: []
paths:
  /api/brand/v1/facility/{facility_id}:
    get:
      tags:
        - Brands
      summary: Get Brands
      description: Get a list of your brands, ids, and external brand codes
      responses:
        '200':
          description: Successfully retrieved brands
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Success message
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        brand_id:
                          type: string
                          format: uuid
                          description: Unique identifier for the brand
                        name:
                          type: string
                          description: Name of the brand
                        external_brand_code:
                          type: string
                          description: External Brand Code
              example:
                data:
                  - brand_id: a7e92c51-4b8c-42d9-95e8-fb16c89a7432
                    name: Acme Outdoor
                    external_brand_code: 12G79
                  - brand_id: d2f61c39-5e7a-4b84-9c31-8d07a5e32b46
                    name: NorthStar Athletics
                    external_brand_code: null
                message: Brand info retrieved successfully
        '404':
          description: No brands found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Error message
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: Error code
              example:
                message: No brands found
                error:
                  code: NO_BRANDS_FOUND
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````