# Get Teams

> GET /v1/teams

`GET https://app.untetherlabs.com/api/v1/teams`

Retrieve all teams

This endpoint is paginated. See /using-the-api/pagination.

## Request

```bash
curl -X GET 'https://app.untetherlabs.com/api/v1/teams' \
  -H 'Authorization: Bearer $UNTETHER_API_KEY'
```

## Query parameters

- `pageSize` (number, default 20, min 1, max 200)
- `cursor` (string)

## Response 200

- `items` (Team[], required)
  - `createdAt` (string, required, example "2024-11-20T07:43:34+0000") — The timestamp of when the team was created.
  - `name` (string, required) — The name of the team.
  - `shorthandName` (string | null) — The shorthand name of the team.
- `cursor` (string)

## Errors

- `validation` (400) — Input validation failed.
