> For the complete documentation index, see [llms.txt](https://helpdocs.conducttr.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://helpdocs.conducttr.com/feature-documentation/api/endpoint-reference/teams/get-superteams.md).

# GET superteams

<mark style="color:green;">`GET`</mark> `/superteams`

Returns the Superteams configured in the exercise and the teams assigned to each Superteam.

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Body**

empty

**Response**

{% tabs %}
{% tab title="200" %}

```json
[
  {
    "hash": "8jO2",
    "name": "Super Team 01",
    "meta": "{\"color\":\"378ADD\"}",
    "teams": [
      3466414,
      3466432,
      3466450,
      3466468,
      3466486,
      3466504,
      3466522,
      3466540,
      3466558,
      3466576
    ]
  },
  {
    "hash": "51E0",
    "name": "Super Team 02",
    "meta": "{\"color\":\"1D9E75\"}",
    "teams": [
      3466594,
      3466612,
      3466630,
      3466648,
      3466666,
      3466684,
      3466702,
      3466720,
      3466738,
      3466756
    ]
  }
]

```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}

### Response fields

| **Field** | **Type** | **Description**                                                                                             |
| --------- | -------- | ----------------------------------------------------------------------------------------------------------- |
| `hash`    | string   | Unique identifier for the Superteam. This value is used when referencing a Super Team elsewhere in the API. |
| `name`    | string   | Display name of the Superteam.                                                                              |
| `meta`    | string   | JSON-encoded metadata associated with the Superteam - at the moment, colour                                 |
| `teams`   | array    | List of team IDs belonging to the Superteam.                                                                |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://helpdocs.conducttr.com/feature-documentation/api/endpoint-reference/teams/get-superteams.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
