> ## 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 event instances

> List one page of occurrences from a recurring Google Calendar event.

`listEventInstances` expands one recurring parent event into its individual
occurrences. Use the parent series ID, not an occurrence ID.

## Example

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

export default automation("List planning occurrences", () => {
  onHttpRequest({ scope: "automation" })

  listEventInstances({
    calendar: "Team Calendar",
    event: "recurring-parent-id",
    timeMin: "2026-08-01T00:00:00Z",
    maxResults: 100,
  })
})
```

## Inputs

`event` is required. `calendar` defaults to primary. Optional `maxResults`
(1–2,500), `pageToken`, `includeDeleted`, RFC 3339 `timeMin`/`timeMax`, and IANA
`timeZone` constrain the page. `account` selects the Google account.

## Output

Returns the same event page as [List events](/reference/integrations/google-calendar/actions/list-events#output). Each occurrence normally includes `recurringEventId` and `originalStart`; use `nextPageToken` to continue.
