> ## 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 email stats

> Get content and engagement stats for an Apollo sequence email.

`apollo.getEmailStats` gets complete sequence-email content and engagement counters.

```ts automations/get-apollo-email-stats.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { apollo } from "automate.ax/apollo"

export default automation("Inspect email engagement", () => {
  onDashboardRun({ title: "Inspect email engagement" })
  apollo.getEmailStats({ emailId: "66f1..." })
})
```

Returns an `ApolloEmail`, including opens, clicks, reply, bounce, and delivery fields when Apollo reports them.

<Warning>
  This endpoint requires a master API key and does not support Apollo OAuth.
</Warning>
