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

> Retrieves one processed Krisp meeting with optional transcript and notes.

`krisp.getMeeting` retrieves metadata and participants for one meeting.

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

export default automation("Get Krisp meeting", () => {
  onDashboardRun({ title: "Get Krisp meeting" })
  markSignificant(
    krisp.getMeeting({
      meetingId: "meeting-id",
      includeTranscript: true,
      includeNotes: true,
    }),
  )
})
```

`meetingId` is required. `includeTranscript` and `includeNotes` default to `false` because those fields can be large. A transcript contains diarized speakers and segments with start and end times in seconds. Notes contain Krisp's nested generated and custom blocks.

Krisp returns `409` while a meeting is still processing and `404` when it does not exist or the connected user cannot access it.
