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

# Bulk enrich organizations

> Enrich up to 10 Apollo organizations in one request.

`bulkEnrichOrganizations` enriches 1–10 companies. Each matched company
consumes one Apollo credit.

```ts automations/bulk-enrich-apollo-organizations.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { bulkEnrichOrganizations } from "automate.ax/apollo"

export default automation("Enrich companies", () => {
  onHttpRequest({ scope: "automation" })
  bulkEnrichOrganizations({
    organizations: [{ domain: "example.com" }, { name: "Acme" }],
  })
})
```

Each organization needs at least one of `domain`, `linkedinUrl`, `name`, or
`website`. Optional `account` selects the binding. Returns normalized
`organizations`, overall `status`, missing and unique-enriched counts, and
optional submitted/unique counts and partial provider error details.
