Quickstart
Inference API
AI Flows
AI Workflows API
AI Workflow Execution API
AI Workflow Operations
AI Workflow Templates API
Model Deployment
AI Workflow Operations
Export AI Workflow
Export an AI Workflow
GET
/
api
/
v1
/
{workflowID}
/
export
Copy
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/{workflowID}/export
Copy
{
"name": "<string>",
"description": "<string>",
"nodes_json": "<string>",
"edges_json": "<string>",
"inputs": [
{
"name": "<string>",
"type": "<string>",
"default_value": "<string>"
}
],
"steps": [
{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"model_slug": "<string>",
"model_version": "<string>",
"params": {
"key": {}
}
}
]
}
Path Parameters
Workflow ID
Response
200
application/json
Export Flow Response JSON
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/{workflowID}/export
Copy
{
"name": "<string>",
"description": "<string>",
"nodes_json": "<string>",
"edges_json": "<string>",
"inputs": [
{
"name": "<string>",
"type": "<string>",
"default_value": "<string>"
}
],
"steps": [
{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"model_slug": "<string>",
"model_version": "<string>",
"params": {
"key": {}
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.