Skip to main content
GET
/
api
/
v1
/
workflows
List workflows
curl --request GET \
  --url https://app.eigenpal.com/api/v1/workflows \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "name": "<string>",
      "version": "<string>",
      "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 workflow name

name
string

Exact-match lookup by workflow name (slug)

kind
enum<string>

Filter by workflow kind

Available options:
workflow,
block
limit
integer

Page size (max 100, default 50)

Required range: 1 <= x <= 100
offset
integer

Page offset

Required range: 0 <= x <= 9007199254740991

Response

Paginated list of workflows

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