> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List automations

> List all automations in your gu1 organization with optional filters for trigger type, status, and archived state, used to populate workflow lists.

## Endpoint

```
GET https://api.gu1.ai/automations
```

## Query Parameters

<ParamField query="type" type="string">
  `realtime` | `scheduled`
</ParamField>

<ParamField query="enabled" type="string">
  `true` | `false`
</ParamField>

<ParamField query="triggerType" type="string">
  Filter by trigger type (must be a valid automation trigger).
</ParamField>

<ParamField query="archived" type="string">
  `true` to return only archived automations; default lists non-archived.
</ParamField>

## Response

**200** — `{ "automations": [...], "total": number, "totalArchived"?: number }`

## Example

```bash theme={null}
curl -s "https://api.gu1.ai/automations?enabled=true" \
  -H "Authorization: Bearer YOUR_API_KEY"
```
