> ## 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.

# Brands

> API endpoints for managing brands in KIMP360 Client API

## List Brands

```http theme={null}
GET /brands
```

Retrieves a list of all brands.

### Response

```json theme={null}
{
  "data": [
    {
      "id": "string",
      "name": "string"
    }
  ]
}
```

## Get Brand

```http theme={null}
GET /brands/{id}
```

Retrieves a specific brand by ID.

### Parameters

* `id` (path) - Brand ID

### Response

```json theme={null}
{
  "id": "string",
  "name": "string"
}
```
