Skip to main content
GET
/
api
/
v1
/
automations
List automations
curl --request GET \
  --url https://studio.eigenpal.com/api/v1/automations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "slug": "<string>",
      "name": "<string>",
      "createdAt": "<string>",
      "description": "<string>",
      "status": "<string>",
      "version": "<string>",
      "triggers": {
        "api": true,
        "email": true,
        "manual": true,
        "cron": true
      },
      "implementationAvailable": true,
      "updatedAt": "<string>"
    }
  ],
  "total": 0,
  "limit": 0,
  "offset": 0
}

Authorizations

Authorization
string
header
required

API key issued from Settings → API Keys. Pass as Authorization: Bearer <key>.

Query Parameters

Substring match against slug, name, or description

type
enum<string>

Filter by implementation type

Available options:
workflow,
agent
limit
integer
Required range: 1 <= x <= 100
offset
integer
Required range: 0 <= x <= 9007199254740991

Response

Paginated list of automations

data
object[]
required
total
integer
required
Required range: -9007199254740991 <= x <= 9007199254740991
limit
integer
required
Required range: -9007199254740991 <= x <= 9007199254740991
offset
integer
required
Required range: -9007199254740991 <= x <= 9007199254740991