Quickstart
Inference API
AI Flows
AI Workflows API
AI Workflow Execution API
AI Workflow Operations
AI Workflow Templates API
Model Deployment
AI Workflows API
List AI Workflows
Get a list for AI Workflows
GET
/
api
/
v1
/
Copy
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/
Copy
{
"status": "<string>",
"message": "<string>",
"total": 123,
"workflows": [
{
"workspace_id": "<string>",
"organization_id": "<string>",
"user_id": "<string>",
"id": "<string>",
"category": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"slug": "<string>",
"icon": "<string>",
"thumbnail": "<string>"
},
"name": "<string>",
"description": "<string>",
"thumbnail_url": "<string>",
"status": "<string>",
"inputs": [
{
"name": "<string>",
"type": "<string>",
"default_value": "<string>"
}
],
"outputs": [
{
"name": "<string>",
"type": "<string>",
"value": "<string>"
}
],
"steps": [
{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"model_slug": "<string>",
"model_version": "<string>",
"params": {
"key": {}
}
}
],
"edges": [
{
"id": "<string>",
"source": "<string>",
"target": "<string>",
"type": "<string>"
}
],
"nodes_json": "<string>",
"edges_json": "<string>",
"premium": true,
"trigger_count": 123,
"popularity": 123,
"last_updated_by": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}
Response
200
application/json
ListWorkflowsResponse JSON
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/
Copy
{
"status": "<string>",
"message": "<string>",
"total": 123,
"workflows": [
{
"workspace_id": "<string>",
"organization_id": "<string>",
"user_id": "<string>",
"id": "<string>",
"category": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"slug": "<string>",
"icon": "<string>",
"thumbnail": "<string>"
},
"name": "<string>",
"description": "<string>",
"thumbnail_url": "<string>",
"status": "<string>",
"inputs": [
{
"name": "<string>",
"type": "<string>",
"default_value": "<string>"
}
],
"outputs": [
{
"name": "<string>",
"type": "<string>",
"value": "<string>"
}
],
"steps": [
{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"model_slug": "<string>",
"model_version": "<string>",
"params": {
"key": {}
}
}
],
"edges": [
{
"id": "<string>",
"source": "<string>",
"target": "<string>",
"type": "<string>"
}
],
"nodes_json": "<string>",
"edges_json": "<string>",
"premium": true,
"trigger_count": 123,
"popularity": 123,
"last_updated_by": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.