> ## 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 transcript entries

> List timed speaker segments from a Google Meet transcript.

`listGoogleMeetTranscriptEntries` returns structured transcript text in chronological provider order.

## Example

```ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { listGoogleMeetTranscriptEntries } from "automate.ax/google-meet"

export default automation("Read a transcript", () => {
  onHttpRequest({ scope: "automation" })

  return listGoogleMeetTranscriptEntries({
    transcript: "conferenceRecords/record-id/transcripts/transcript-id",
    pageSize: 100,
  })
})
```

## Inputs

Provide the full `transcript` resource name. Optional `pageSize` accepts 1–100 and `pageToken` continues a previous request. Second argument `{ account }` selects the Google Account. Inputs accept compatible signals.

## Output

Returns `{ transcriptEntries: TranscriptEntry[]; nextPageToken?: string }`. See [Get transcript entry](/reference/integrations/google-meet/actions/get-transcript-entry#output) for each entry shape.
