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

# List Teams

> GET /api/teams

## Request

```bash theme={null}
GET /api/teams
```

Returns all teams the authenticated user belongs to.

### Example

```bash theme={null}
curl https://lazyraccoon.dev/api/teams \
  -H "Authorization: Bearer lr_your_key"
```

## Response

```json theme={null}
[
  {
    "id": "team-uuid",
    "name": "My Team",
    "slug": "my-team",
    "role": "owner",
    "createdAt": "2026-03-01T12:00:00.000Z"
  }
]
```
