List Agents
GET
/api/v1/workflow/fetchGet all workflows for the authenticated user's organization. Returns a lightweight response with only essential fields for listing. Use GET /workflow/fetch/{workflow_id} to get full workflow details.
cURL example
curl -X GET \
'http://localhost:8000/api/v1/workflow/fetch' \
-H 'Authorization: Bearer <API_KEY>'Parameters
| Name | Location | Type | Description |
|---|---|---|---|
status | query | object | Filter by status - can be single value (active/archived) or comma-separated (active,archived) |
authorization | header | object | — |
X-API-Key | header | object | — |
Responses
200Successful Responseapplication/jsonView schema
{
"type": "array",
"items": {
"$ref": "#/components/schemas/WorkflowListResponse"
},
"title": "Response Get Workflows Api V1 Workflow Fetch Get"
}404Not found422Validation Errorapplication/jsonView schema
{
"$ref": "#/components/schemas/HTTPValidationError"
}