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

> Get one saved Apollo contact by ID, exact email, or exact name.

`getContact` resolves and loads one contact saved in your Apollo workspace.

```ts automations/get-apollo-contact.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { getContact } from "automate.ax/apollo"

export default automation("Get an Apollo contact", () => {
  onHttpRequest({ scope: "automation" })
  getContact({ contact: "ada@example.com" })
})
```

| Input     | Type                                              | Required | Default         | Description                                |
| --------- | ------------------------------------------------- | -------- | --------------- | ------------------------------------------ |
| `contact` | `ApolloReference`                                 | Yes      | —               | Contact ID, exact email/name, or `{ id }`. |
| `account` | `string \| IntegrationAccountReference<"apollo">` | No       | Project default | Connected workspace.                       |

Returns an `ApolloContact` with stable `id`, identity and job fields, stage,
owner, account and organization links, list and sequence IDs, custom fields,
and timestamps when Apollo supplies them.
