> ## Documentation Index
> Fetch the complete documentation index at: https://kiran.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get all teams

> Get teams current user is a member of

<RequestExample>
  ```bash Request
  curl --location 'http://localhost:3005/api/teams' \
  --header 'Accept: application/json' \
  --header 'Authorization: Token <token>'
  ```
</RequestExample>

<ResponseExample>
  ```json Response
  {
    "data": [
      {
        "id": 1,
        "name": "ACME",
        "slug": "acme",
        "logo": null,
        "createdAt": "2023-07-02T16:07:08.469Z",
        "updatedAt": "2023-07-02T16:07:08.469Z"
      },
      {
        "id": 2,
        "name": "Facebook",
        "slug": "facebook",
        "logo": null,
        "createdAt": "2023-07-02T16:07:08.469Z",
        "updatedAt": "2023-07-02T16:07:08.469Z"
      }
    ]
  }
  ```
</ResponseExample>
