Workflows
List Workflows
Every Workflow in your workspace
GET
/
workflows
curl "https://api.clustr-ai.com/api/public/workflows" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"data": {
"workflows": [
{
"id": "7f1e2a33-...",
"name": "Hot accounts",
"is_active": true,
"viewId": "3e5f1a22-...",
"entity": "accounts",
"on": "enter",
"memberCount": 42,
"last_run_at": "2026-09-13T09:00:00Z"
}
],
"count": 1
}
}
Every Workflow, active or not — its view, trigger, current member
count, and last run.
curl "https://api.clustr-ai.com/api/public/workflows" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"data": {
"workflows": [
{
"id": "7f1e2a33-...",
"name": "Hot accounts",
"is_active": true,
"viewId": "3e5f1a22-...",
"entity": "accounts",
"on": "enter",
"memberCount": 42,
"last_run_at": "2026-09-13T09:00:00Z"
}
],
"count": 1
}
}
⌘I
curl "https://api.clustr-ai.com/api/public/workflows" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"data": {
"workflows": [
{
"id": "7f1e2a33-...",
"name": "Hot accounts",
"is_active": true,
"viewId": "3e5f1a22-...",
"entity": "accounts",
"on": "enter",
"memberCount": 42,
"last_run_at": "2026-09-13T09:00:00Z"
}
],
"count": 1
}
}