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

> List recent executions for one Automate.ax automation.

`automate.listExecutions` returns up to 100 recent execution summaries for one automation.

```ts automations/list-executions.automation.ts theme={null}
import { automation } from "automate.ax"
import { automate } from "automate.ax/automate"

export default automation("List executions", () => {
  automate.listExecutions({ automation: "auto_123", limit: 25 })
})
```

`automation` accepts an imported automation descriptor, exact ID, or unique deployed description. Each summary contains `id`, `status`, `createdAt`, nullable `settledAt`, `eventTypes`, and nullable terminal `failure`. `limit` defaults to `50`. The action requires `project:read`.
