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

> Get Apollo's complete stored record for a person ID.

`getPerson` loads complete Apollo data for a stable person ID returned by search
or enrichment. The provider charges one credit for this lookup.

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

export default automation("Get an Apollo person", () => {
  onHttpRequest({ scope: "automation" })
  getPerson({ personId: "person-id" })
})
```

`personId` is required; optional `account` selects the binding. Returns an
`ApolloPerson` with identity, job, location, contact, organization, email,
phone, social, seniority, and department data when available. Apollo returning
no person record causes the action to fail.
