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

> Enrich up to 10 Apollo people in one request.

`bulkEnrichPeople` enriches 1–10 people and can consume up to 90 base credits.

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

export default automation("Enrich Apollo prospects", () => {
  onHttpRequest({ scope: "automation" })
  bulkEnrichPeople({
    people: [{ personId: "person-one" }, { email: "ada@example.com" }],
  })
})
```

`people` contains 1–10 person-match objects with the same identity fields as
`enrichPerson`. Shared personal-email, phone, waterfall, and HTTPS webhook
options have the same defaults and requirements. Optional `account` selects the
binding.

Returns request-ordered `matches`, with `null` for missing people, plus `status`,
`totalRequested`, optional unique/missing counts, credits, partial error data,
`requestId`, and provider-native phone/waterfall status. Asynchronous options
can charge even when a waterfall vendor finds no match.
