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

> Get complete Vercel project settings by ID or name.

`getVercelProject` gets one project using its stable ID or current name.

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

export default automation("Get Vercel project", () => {
  const project = getVercelProject({ project: "automate-ax" })
  project.id
})
```

`project` is required. Optional `teamId` overrides the OAuth installation team, and optional `account` selects the binding. The output is Vercel's complete typed project object, including build, deployment, domain, environment, Git, and security settings available to the token.
