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": {}
}
}
]
}
Export an AI Workflow
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": {}
}
}
]
}
Workflow ID
Export Flow Response JSON
The response is of type object
.
Was this page helpful?