Retrieves a list of all agentflows in your workspace. Agentflows are AI agent workflows with specific types and configurations.
Query Parameters
Filter by flow type. Use AGENTFLOW to list only agentflows.
Response
Unique identifier for the agentflow
JSON string containing the flow configuration and node data
Whether the agentflow is currently deployed
Whether the agentflow is publicly accessible
Flow type (CHATFLOW, AGENTFLOW, MULTIAGENT, or ASSISTANT)
Category classification for the agentflow
Timestamp when the agentflow was created
Timestamp when the agentflow was last updated
ID of the workspace containing this agentflow
Example Request
curl -X GET \
'https://your-flowise-instance.com/api/v1/chatflows?type=AGENTFLOW' \
-H 'Authorization: Bearer YOUR_API_KEY'
Example Response
[
{
"id": "abc123-def456-ghi789",
"name": "Customer Support Agent",
"flowData": "{\"nodes\":[...],\"edges\":[...]}",
"deployed": true,
"isPublic": false,
"type": "AGENTFLOW",
"category": "Customer Service",
"createdDate": "2024-01-15T10:30:00Z",
"updatedDate": "2024-01-20T14:45:00Z",
"workspaceId": "workspace-123"
}
]
Error Responses
Unauthorized - Invalid or missing API key
Forbidden - Insufficient permissions to view agentflows
Internal Server Error - Server encountered an error processing the request