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

# Apify

> Run Apify Actors and tasks, inspect their results, and react to Actor run and build events.

Use Apify to start Actors and tasks, inspect runs, datasets, key-value stores, and logs, manage Actor builds, and start automations from run or build events.

Connect Apify with an API token from **Settings → Integrations** in the Apify Console.

## Exports

```ts theme={null}
import { apify, apifyAccount, getApifyClient } from "automate.ax/apify"
```

* `apify` contains the packaged Apify actions and triggers.
* `apifyAccount("name")` selects a named Apify connection.
* `getApifyClient` creates the authenticated Apify client for a custom account-backed action.

## Triggers

* [Actor run event](/reference/integrations/apify/triggers/on-actor-run-event)
* [Actor run created](/reference/integrations/apify/triggers/on-actor-run-created)
* [Actor run succeeded](/reference/integrations/apify/triggers/on-actor-run-succeeded)
* [Actor run failed](/reference/integrations/apify/triggers/on-actor-run-failed)
* [Actor run aborted](/reference/integrations/apify/triggers/on-actor-run-aborted)
* [Actor run timed out](/reference/integrations/apify/triggers/on-actor-run-timed-out)
* [Actor run resurrected](/reference/integrations/apify/triggers/on-actor-run-resurrected)
* [Actor build event](/reference/integrations/apify/triggers/on-actor-build-event)
* [Actor build created](/reference/integrations/apify/triggers/on-actor-build-created)
* [Actor build succeeded](/reference/integrations/apify/triggers/on-actor-build-succeeded)
* [Actor build failed](/reference/integrations/apify/triggers/on-actor-build-failed)
* [Actor build aborted](/reference/integrations/apify/triggers/on-actor-build-aborted)
* [Actor build timed out](/reference/integrations/apify/triggers/on-actor-build-timed-out)

## Actions

* [Start Actor](/reference/integrations/apify/actions/start-actor)
* [Start task](/reference/integrations/apify/actions/start-task)
* [Get Actor run](/reference/integrations/apify/actions/get-run)
* [List Actor runs](/reference/integrations/apify/actions/list-runs)
* [Wait for Actor run](/reference/integrations/apify/actions/wait-for-run)
* [Abort Actor run](/reference/integrations/apify/actions/abort-run)
* [Resurrect Actor run](/reference/integrations/apify/actions/resurrect-run)
* [List dataset items](/reference/integrations/apify/actions/list-dataset-items)
* [Get key-value store record](/reference/integrations/apify/actions/get-key-value-store-record)
* [Get Actor run log](/reference/integrations/apify/actions/get-run-log)
* [Start Actor build](/reference/integrations/apify/actions/start-actor-build)
* [Get Actor build](/reference/integrations/apify/actions/get-actor-build)
* [Wait for Actor build](/reference/integrations/apify/actions/wait-for-actor-build)
* [Abort Actor build](/reference/integrations/apify/actions/abort-actor-build)
