Skip to main content

Request

GET /api/teams
Returns all teams the authenticated user belongs to.

Example

curl https://lazyraccoon.dev/api/teams \
  -H "Authorization: Bearer lr_your_key"

Response

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