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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List teams

> List teams visible to the connected Vercel user.

`listVercelTeams` returns a page of teams the connected user can access.

```ts automations/list-vercel-teams.automation.ts theme={null}
import { automation } from "automate.ax"
import { listVercelTeams } from "automate.ax/vercel"

export default automation("List Vercel teams", () => {
  const page = listVercelTeams({ limit: 50 })
  page.teams
})
```

`limit` defaults to `20` and accepts 1–100. Optional millisecond timestamps `since` and `until` filter creation time; optional `account` selects the binding. The output contains Vercel's typed `teams` and `pagination` fields.
