# Brands

Manage your brands.

GET `/brands`

List all brands for the authenticated user.

Responses

200 Array of brand summaries

401 Missing or invalid token

```
curl -X GET \
  https://anomalia.so/api/v1/brands \
  -H "Authorization: Bearer $TOKEN"
```

GET `/brands/:slug`

Full brand detail with stats, plan, kit, and recent runs.

Responses

200 Brand detail

404 Brand not found

```
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug \
  -H "Authorization: Bearer $TOKEN"
```

[

← Previous

Overview

](/docs/api)[

Next →

Posts

](/docs/api/posts)

---
Source: https://www.anomalia.so/docs/api/brands
