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

> Get an Apollo conversation, transcript, and insights.

`apollo.getConversation` gets one recorded conversation.

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

export default automation("Read a conversation", () => {
  onDashboardRun({ title: "Read a conversation" })
  apollo.getConversation({ conversationId: "64a1..." })
})
```

Returns `{ conversation, details }`. `conversation` contains stable summary fields. `details` contains Apollo's complete available transcript, recordings, participants, opportunities, and generated insights with keys converted recursively to camel case. Apollo can charge one conversation credit when AI insights are present.
