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

# Get sub-brands

> Get all sub-brands associated with your organization.



## OpenAPI

````yaml https://api.sibipro.com/offers/openapi.json get /sub-brands
openapi: 3.0.0
info:
  title: Offers API
  version: 1.0.0
  description: RESTful API for managing offers
servers:
  - url: https://api.sibipro.com/prod/offers
    description: API endpoint
security: []
paths:
  /sub-brands:
    get:
      summary: Get sub-brands
      description: Get all sub-brands associated with your organization.
      responses:
        '200':
          description: Sub-brands retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      description: Unique identifier for the sub-brand
                    name:
                      type: string
                      description: Name of the sub-brand
                  required:
                    - id
                    - name
                title: SubBrand
                example:
                  - id: 9OYmJkDZ8ijU4c
                    name: SIBI Home Warranty
                  - id: vgYOuUeTC8mJRl
                    name: SIBI Expanded Warranty
        '401':
          description: Unauthorized - Missing or invalid authentication
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unauthorized:
                  value:
                    code: UNAUTHORIZED
                    message: Missing authentication token
        '404':
          description: Not found - No sub-brands exist for the organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                subBrandsNotFound:
                  value:
                    code: SUB_BRANDS_NOT_FOUND
                    message: No sub-brands found
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                serverError:
                  value:
                    code: INTERNAL_SERVER_ERROR
                    message: An unexpected error occurred
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        code:
          type: string
          description: Error code indicating the type of error
        message:
          type: string
          description: Human-readable error message explaining what went wrong
          example: The request contains invalid parameters
        details:
          type: array
          items:
            type: object
            properties:
              field:
                type: string
              error:
                type: string
            required:
              - field
              - error
          description: Detailed validation errors when applicable
          example:
            - field: customer.email
              error: Invalid email
            - field: address.postalCode
              error: Invalid
      required:
        - code
        - message

````