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

# Search conversations

> Search recorded Apollo conversations.

`apollo.searchConversations` searches recorded dialer calls and video meetings.

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

export default automation("Find recent meetings", () => {
  onDashboardRun({ title: "Find recent meetings" })
  apollo.searchConversations({
    account: "acme.com",
    type: "videoConference",
    dateFrom: "2026-08-01T00:00:00Z",
  })
})
```

Filter by account, contacts, type, dates, tags, trackers, organizations, scorecard, visibility boundary, or provider sort field. Returns `{ conversations, pagination }`.
