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

> List domains connected to one Vercel project.

`listVercelProjectDomains` lists project domains with deployment-target filters.

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

export default automation("List Vercel production domains", () => {
  const page = listVercelProjectDomains({
    project: "docs-site",
    target: "production",
    verified: true,
  })
  page.domains
})
```

`project` is required. `limit` defaults to `20` and accepts 1–100; `order` defaults to newest first with `"DESC"`. Optional `target`, `verified`, `gitBranch`, and `customEnvironmentId` filter results. The output contains typed `domains` and `pagination` data.
