# Get Team

> GET /v1/teams/{teamId}

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

Get team information by ID

## Request

```bash
curl -X GET 'https://app.untetherlabs.com/api/v1/teams/3fa85f64-5717-4562-b3fc-2c963f66afa6' \
  -H 'Authorization: Bearer $UNTETHER_API_KEY'
```

## Path parameters

- `teamId` (uuid, required)

## Response 200

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

## Errors

- `validation` (400) — Input validation failed.
- `team-not-found` (404) — A specified team does not exist in the system.
