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

# List meetings

> Lists processed Krisp meetings visible to the connected user.

`krisp.listMeetings` lists processed meetings owned by or shared directly with the connected user.

```ts automations/list-krisp-meetings.automation.ts theme={null}
import { automation, markSignificant, onDashboardRun } from "automate.ax"
import { krisp } from "automate.ax/krisp"

export default automation("List Krisp meetings", () => {
  onDashboardRun({ title: "List Krisp meetings" })
  markSignificant(krisp.listMeetings({ ownership: "mine", limit: 50 }))
})
```

`limit` defaults to `20` and accepts up to `100`. Use `cursor` from `nextCursor` for the next page. Filter by ISO date-times with `from` and `to`, title or note text with `query`, tag IDs with `tagIds`, or `ownership` (`all`, `mine`, or `shared`). Sort with `sortBy` (`date`, `duration`, or `lastModified`) and `order` (`newest` or `oldest`). Set `includeParticipants` to `true` to request attendee data.

The result contains `meetings`, `nextCursor`, and `total`. Public-link and workspace-wide visibility do not make a meeting available through this endpoint; the user must own it or receive a direct share. `query` does not search transcript text.
