Skip to main content
GET
List Workflows

Authentication

Requires a JWT token or API key in the Authorization header.

Request

Query parameters

page
integer
Page number (default: 1).
limit
integer
Items per page (default: 20, max: 100).
status
string
Filter by status: active, paused, or draft.

Example request

Response

Returns a paginated list of workflow objects.
workflows
array
Array of workflow objects.
workflows[].id
string
Unique workflow identifier.
workflows[].name
string
Workflow display name.
workflows[].description
string
Human-readable description.
workflows[].status
string
Current status: active, paused, or draft.
workflows[].trigger
object
Trigger configuration (type, schedule, etc.).
workflows[].steps
array
Array of step definitions.
workflows[].created_at
string
ISO 8601 creation timestamp.
workflows[].updated_at
string
ISO 8601 last update timestamp.
total
integer
Total number of workflows.
page
integer
Current page number.

Example response