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

# List Brands

> Retrieves a list of all brands.



## OpenAPI

````yaml get /brands
openapi: 3.0.0
info:
  title: KIMP360 API
  version: 1.0.0
servers:
  - url: https://api.kimp360.com
security:
  - ApiKeyAuth: []
paths:
  /brands:
    get:
      summary: List Brands
      description: Retrieves a list of all brands.
      responses:
        '200':
          description: A list of brands
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Brand'
components:
  schemas:
    Brand:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````