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

> Lists personal and optional team bookings.

`tidyCal.listBookings` lists bookings visible to the connected account.

```ts automations/list-tidycal-bookings.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { tidyCal } from "automate.ax/tidycal"

export default automation("List TidyCal bookings", () => {
  onDashboardRun({ title: "List TidyCal bookings" })
  tidyCal.listBookings({
    startsAt: "2026-08-01",
    endsAt: "2026-08-31",
    cancelled: false,
    includeTeams: true,
  })
})
```

`startsAt` and `endsAt` are ISO dates. `cancelled` filters by cancellation state, `includeTeams` includes team bookings, and `page` defaults to `1`. The result contains `items`, with each booking's times, contact, questions, payment, meeting details, and cancellation state.
