> ## 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 type availability schedules

> Inspect the host availability schedule used by a Calendly event type.

`calendly.listEventTypeAvailabilitySchedules` returns the host schedule and rules currently assigned to an event type.

```ts automations/list-calendly-event-availability.automation.ts theme={null}
import { automation, onDashboardRun, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"

export default automation("Inspect Calendly event availability", () => {
  onDashboardRun({ title: "Inspect event availability" })
  const schedules = calendly.listEventTypeAvailabilitySchedules({
    eventType: "https://api.calendly.com/event_types/event-type-id",
  })
  sendEmail({
    subject: "Event availability",
    text: JSON.stringify(schedules.items),
  })
})
```

Pass the complete event type URI. Results include the availability source, timezone, user, schedule URI, and weekly or date-specific rules.
