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

# Apollo

> Search, enrich, and manage Apollo people, organizations, contacts, accounts, lists, sequences, and tasks.

Import Apollo actions from `automate.ax/apollo`. Action inputs accept plain
values or compatible signals. The integration distinguishes Apollo's prospect
database from resources saved in your workspace:

* People and organizations are Apollo intelligence records. Search results are
  intentionally sparse; enrichment can reveal complete data and consume credits.
* Contacts and accounts are records saved in your Apollo workspace. They can
  have owners, stages, lists, custom fields, sequences, and tasks.

```ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { searchPeople } from "automate.ax/apollo"

export default automation("Find engineering leaders", () => {
  onHttpRequest({ scope: "automation" })
  searchPeople({ titles: ["VP Engineering"], perPage: 25 })
})
```

## Accounts and references

Leave `account` unset to use the project's default Apollo binding. Most inputs
that identify a workspace resource accept its ID, an exact name/email/domain,
or `{ id: "..." }`. Plain strings are resolved semantically and fail when no
unique exact match exists; `{ id }` skips lookup and is preferable when you
already have the canonical ID.

Apollo availability and credit use depend on the connected plan and scopes.
Search and enrichment are deliberately separate so a broad search does not
accidentally consume enrichment credits.

<CardGroup cols={2}>
  <Card title="People intelligence" href="/reference/integrations/apollo/actions/search-people">
    Search and enrich prospects.
  </Card>

  <Card title="Organizations" href="/reference/integrations/apollo/actions/search-organizations">
    Search and enrich companies.
  </Card>

  <Card title="Saved contacts" href="/reference/integrations/apollo/actions/search-contacts">
    Manage workspace contacts.
  </Card>

  <Card title="Saved accounts" href="/reference/integrations/apollo/actions/search-accounts">
    Manage workspace accounts.
  </Card>

  <Card title="Sequences" href="/reference/integrations/apollo/actions/search-sequences">
    Enroll contacts and control sequence state.
  </Card>

  <Card title="Tasks" href="/reference/integrations/apollo/actions/search-tasks">
    Create and manage sales tasks.
  </Card>
</CardGroup>
