Skip to main content
GET
/
api
/
v1
/
workflow
/
manager
/
list
Get workflow list
curl --request GET \
  --url https://flowra.dev/api/v1/workflow/manager/list \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "projectId": "<string>",
  "workflowType": "static",
  "isActive": true,
  "isPublic": true,
  "version": "<string>",
  "executionCount": 123,
  "tools": "<array>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "clonedFromWorkflowId": "<string>",
  "clonedFromVersion": "1.0.1",
  "lastExecutedAt": "<string>"
}

Authorizations

x-api-key
string
header
required

Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:

Query Parameters

q
string

Search keyword for filtering results

Example:

"john doe"

page
number
default:1

Page number (1-based)

Required range: x >= 1
Example:

1

limit
number
default:20

Number of items per page

Required range: 1 <= x <= 100
Example:

20

offset
number

Number of items to skip (for offset-based pagination)

Required range: x >= 0
Example:

0

sortBy
string

Field name to sort by

Example:

"createdAt"

sortOrder
enum<string>
default:DESC

Sort order

Available options:
ASC,
DESC
Example:

"DESC"

fields
string

Comma-separated list of fields to include in response

Example:

"id,name,email"

selectedToolSlugs
string

Comma-separated selected tool slugs for sort-order (e.g. put toolkits with these tools first)

Example:

"tool_a,tool_b"

projectId
string

Project ID to filter workflows by

workflowType
enum<string>

Filter by workflow type

Available options:
static,
agent
Example:

"static"

isActive
enum<string>

Filter by active status (true | false)

Available options:
true,
false
Example:

"true"

Response

200 - application/json

Workflows retrieved successfully