> ## 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.

# Get team

> Get one Vercel team by ID.

`getVercelTeam` gets one team. OAuth accounts default to the team selected during installation.

```ts automations/get-vercel-team.automation.ts theme={null}
import { automation } from "automate.ax"
import { getVercelTeam } from "automate.ax/vercel"

export default automation("Get Vercel team", () => {
  const team = getVercelTeam({})
  team.slug
})
```

Pass `teamId` when using an access token or when overriding the OAuth installation team. Personal-scope accounts without `teamId` fail because this endpoint is team-only. The output is Vercel's complete typed team object.
