Skip to main content
GET
/
api
/
v1
/
automations
/
{id}
Get automation
curl --request GET \
  --url https://studio.eigenpal.com/api/v1/automations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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>",
  "inputSchema": {},
  "outputSchema": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Workflow id, agent id, or typed alias like workflows.slug / agents.slug

Response

Automation

id
string
required

Implementation id for the automation. Workflow automations use workflow ids; agent automations use agent workflow ids.

type
enum<string>
required
Available options:
workflow,
agent
slug
string
required
name
string | null
required
createdAt
required
description
string | null
status
string
version
string | null
triggers
object
implementationAvailable
boolean

False when the automations registry row exists but the workflow/agent implementation row is missing.

updatedAt
inputSchema
object
outputSchema
object