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

# GET /api/v1/teams — List Your Teams

> Returns all teams accessible to the authenticated user. Use team ID values as team_id when creating campaigns, querying contacts, and listing post schedulers.

Many ReachOwl endpoints require a `team_id`. Use this endpoint to list the teams you belong to and read their IDs for use in subsequent requests. The response is an array of team objects, each containing an `id` and `name`.

## Request

```bash theme={null}
curl -X GET https://api.reachowl.com/api/v1/teams \
  -H "Authorization: Bearer <token>"
```

## Response

```json theme={null}
[
  {
    "id": 12,
    "name": "Sales Team"
  },
  {
    "id": 34,
    "name": "Recruiting"
  }
]
```
