Quickstart
Inference API
AI Flows
AI Workflows API
AI Workflow Execution API
AI Workflow Operations
AI Workflow Templates API
Model Deployment
AI Workflows API
Get AI Workflow
Get an existing AI Workflow
GET
/
api
/
v1
/
{workflowID}
Copy
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/{workflowID}
Copy
{
"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>"
}
Path Parameters
Workflow ID
Response
200
application/json
Flow JSON
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/{workflowID}
Copy
{
"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.