AI Workflow Operations
Export AI Workflow
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
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/{workflowID}/export
{
"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
Was this page helpful?
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/{workflowID}/export
{
"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": {}
}
}
]
}