curl --request GET \
--url https://api.example.com/api/v1/chatflows{
"400": {},
"401": {},
"403": {},
"500": {},
"data": [
{
"id": "<string>",
"name": "<string>",
"flowData": "<string>",
"deployed": true,
"isPublic": true,
"apikeyid": "<string>",
"chatbotConfig": "<string>",
"apiConfig": "<string>",
"type": "<string>",
"category": "<string>",
"workspaceId": "<string>",
"createdDate": "<string>",
"updatedDate": "<string>"
}
],
"total": 123,
"page": 123,
"pages": 123
}Retrieve a list of all chatflows in your workspace
curl --request GET \
--url https://api.example.com/api/v1/chatflows{
"400": {},
"401": {},
"403": {},
"500": {},
"data": [
{
"id": "<string>",
"name": "<string>",
"flowData": "<string>",
"deployed": true,
"isPublic": true,
"apikeyid": "<string>",
"chatbotConfig": "<string>",
"apiConfig": "<string>",
"type": "<string>",
"category": "<string>",
"workspaceId": "<string>",
"createdDate": "<string>",
"updatedDate": "<string>"
}
],
"total": 123,
"page": 123,
"pages": 123
}chatflows:view, chatflows:update, agentflows:view, or agentflows:updateCHATFLOW - Standard chatflowsAGENTFLOW - Agent-based flowsMULTIAGENT - Multi-agent flowsASSISTANT - Assistant flowscurl -X GET "https://your-flowise-instance.com/api/v1/chatflows?type=CHATFLOW&page=1&limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
const response = await fetch('https://your-flowise-instance.com/api/v1/chatflows?type=CHATFLOW', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
});
const data = await response.json();
import requests
response = requests.get(
'https://your-flowise-instance.com/api/v1/chatflows',
params={'type': 'CHATFLOW', 'page': 1, 'limit': 10},
headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
data = response.json()
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Customer Support Bot",
"flowData": "{\"nodes\":[...],\"edges\":[...]}",
"deployed": true,
"isPublic": false,
"apikeyid": "abc123",
"chatbotConfig": "{\"welcomeMessage\":\"Hello!\"}",
"apiConfig": null,
"type": "CHATFLOW",
"category": "Support",
"workspaceId": "workspace-123",
"createdDate": "2024-01-15T10:30:00.000Z",
"updatedDate": "2024-01-20T14:45:00.000Z"
}
],
"total": 25,
"page": 1,
"pages": 3
}