---
title: "Get automation"
method: GET
path: "/api/v1/automations/{id}"
tags: ["Automations"]
---

# Get automation

`GET /api/v1/automations/{id}`

Get one runnable workflow or agent automation by id or typed alias.

## Path parameters

- `id` string, required — Workflow id, agent id, or typed alias like workflows.slug / agents.slug

## Response `200`

Automation

- AutomationDetail
  - `id` string, required — Implementation id for the automation. Workflow automations use workflow ids; agent automations use agent workflow ids.
  - `type` 'workflow' | 'agent', required
  - `slug` string, required
  - `name` string, nullable, required
  - `description` string, nullable
  - `status` string
  - `version` string, nullable
  - `triggers` AutomationTriggerState
    - `api` boolean, required
    - `email` boolean, required
    - `manual` boolean, required
    - `cron` boolean, required
  - `implementationAvailable` boolean — False when the automations registry row exists but the workflow/agent implementation row is missing.
  - `createdAt` union, required
    - string
    - string
  - `updatedAt` union
    - string
    - string
  - `inputSchema` object, nullable
  - `outputSchema` object, nullable

## Other responses

- `400` — Validation error. Request shape did not match the spec.
- `401` — Missing or invalid API key
- `403` — API key lacks required scope
- `404` — Resource not found
- `413` — Payload too large. Upload exceeded the per-request size cap.
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.dev/eigenpal/apis/eigenpal-api.md) · [All operations](https://skmtc.dev/eigenpal/apis/eigenpal-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/eigenpal/eigenpal-api/revisions/dddcddf1975c/schema)
