List All Flows

Retrieve a paginated list of all flows created by the authenticated account. Each flow includes metadata about the template used, configured parameters, current execution state, and progress information.

Filtering & Sorting:

  • filter_by: Filter flows by state (e.g., 'running', 'completed', 'failed')
  • sort_by: Sort results by 'state', 'progress', 'created_at', 'started_at', or 'finished_at'

Response includes:

  • Flow ID and template information
  • Current state and progress percentage
  • Timestamps (created, started, finished)
  • Custom parameters and additional metadata

This endpoint allows you to list all flows.

Endpoint

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

Parameters

filter_by (optional)

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

  • Location: query
  • Type: string

sort_by (optional)

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

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

Responses

200

Successful Response

422

Validation Error

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"
wget --header="Authorization: Bearer YOUR_TOKEN" \
  "https://flows.generio.ai/flows" -O -
import requests

url = "https://flows.generio.ai/flows"
headers = {
    "Authorization": "Bearer YOUR_TOKEN",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
print(response.json())
const url = "https://flows.generio.ai/flows";
fetch(url, {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN",
    "Content-Type": "application/json"
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error("Error:", error));
<?php
$url = "https://flows.generio.ai/flows";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    "Authorization: Bearer YOUR_TOKEN",
    "Content-Type: application/json"
]);

$response = curl_exec($ch);
curl_close($ch);

echo $response;
?>