---
title: Get
url: https://www.tines.com/docs/api/teams/get/
updated: 2024-07-11T08:52:54+00:00
description: Retrieve a single team or case group.
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/llms.txt) › [Tines API](https://www.tines.com/llms.txt) › [Teams](https://www.tines.com/llm/docs/api/teams.md)*

# Get

*[View on tines.com](https://www.tines.com/docs/api/teams/get/)*

## Description

Retrieve a single team or case group.

## Request

HTTP Method: **GET**

| Parameter | Description                     |
| --------- | ------------------------------- |
| team_id   | The ID of the team to retrieve. |

```bash
curl -X GET \
  https://<tenant-domain>/api/v1/teams/<<team_id>> \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'
```

## Response

A successful request will return a JSON object representing the specified team.

### Field description

| Parameter | Description      |
| --------- | ---------------- |
| id        | The team ID.     |
| name      | The team name.   |
| groups    | The team groups. |

### Sample response

```json
{
  "id": 1,
  "name": "Security team",
  "groups": [
    {
      "id": 3,
      "name": "Tier 1"
    }
  ]
}
```
