Skip to main content
GET
List Workflows
Read only
Recommended. This endpoint is part of the public /v1 API reference and is the supported path for new integrations. See the migration guide for versioning guidance.
Returns every workflow in your workspace, paginated and sorted by creation date (newest first). Each entry includes the workflow’s id, display name, current status (active, paused, cancelled, or draft), enrolled-lead count, and creation timestamp. Use this to power a workflows overview dashboard, build automation that audits which sequences are running, or sync workflow state into your own data store.

When to use this

  • Operations dashboards: render a table of every workflow with status badges and lead counts.
  • Compliance audits: enumerate all active sequences so legal and compliance teams can confirm what outreach is currently running.
  • CI integration tests: assert that newly created workflows show up in the list before chaining additional API calls.
For the full structural detail of a single workflow (nodes, edges, configuration), call Get Workflow Details and the related list endpoints.

Query parameters

Errors

  • 403 Forbidden is returned when the API key cannot read workflows on this workspace.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

sortOrder
enum<string>
Available options:
ASC,
DESC
sortBy
string
Example:

"createdAt"

limit
number
Example:

20

page
number
Example:

1

Response

Workflows fetched successfully.

statusCode
number
Example:

200

message
string
Example:

"Workflows fetched successfully"

data
object[]
meta
object