Skip to main content

List all created flows

This endpoint provides an overview of all created flows. For each flow, it gives details about the used template, the configured parameters, the status, and current progress. The sort_by parameter allows to sort the flows by one of the fields: status, progress, created_at, started_at, finished_at. The filter_by parameter allows to filter the fields returned in each flow summary. If not provided, all fields are returned.

Endpoint

GET https://flows.generio.ai/flows

Parameters

sort_by (optional)

Sort flows by one of: status, progress, created_at, started_at, finished_at

  • Location: query
  • Type: string
  • Example: created_at
  • Default: created_at

filter_by (optional)

Filter flows by their status to include only flows that have a certain status. Value must be one of: created, running, aborted, completed, failed. If not provided, all flows are returned.

  • Location: query
  • Type: string
  • Example: string

Code Examples

Copy and run these examples in your terminal or code editor.Make sure to replace YOUR_TOKEN with your actual authentication token.

curl -X GET "https://flows.generio.ai/flows" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"