AI Workflow Execution API
Get Flow Execution
Quickstart
Inference API
AI Flows
AI Workflows API
AI Workflow Execution API
AI Workflow Operations
AI Workflow Templates API
Model Deployment
AI Workflow Execution API
Get Flow Execution
Please make sure that you parse output as JSON if you are using it in a workflow
GET
/
api
/
v1
/
{workflowID}
/
executions
/
{execID}
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/{workflowID}/executions/{execID}
{
"flow_id": "<string>",
"flow_name": "<string>",
"organization_id": "<string>",
"api_key": "<string>",
"execution_id": "<string>",
"source_ip_address": "<string>",
"parameters": [
{
"name": "<string>",
"value": "<string>"
}
],
"step_results": [
{
"step_id": "<string>",
"step_name": "<string>",
"model": "<string>",
"version": "<string>",
"started_at": "<string>",
"ended_at": "<string>",
"status": "<string>",
"output": "<string>",
"input": "<string>"
}
],
"status": "<string>",
"output": "<string>",
"created_at": "<string>",
"started_at": "<string>",
"ended_at": "<string>",
"updated_at": "<string>",
"deleted_at": "<string>"
}
Path Parameters
Workflow ID
Response
200
application/json
Execution JSON
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://flows.eachlabs.ai/api/v1/{workflowID}/executions/{execID}
{
"flow_id": "<string>",
"flow_name": "<string>",
"organization_id": "<string>",
"api_key": "<string>",
"execution_id": "<string>",
"source_ip_address": "<string>",
"parameters": [
{
"name": "<string>",
"value": "<string>"
}
],
"step_results": [
{
"step_id": "<string>",
"step_name": "<string>",
"model": "<string>",
"version": "<string>",
"started_at": "<string>",
"ended_at": "<string>",
"status": "<string>",
"output": "<string>",
"input": "<string>"
}
],
"status": "<string>",
"output": "<string>",
"created_at": "<string>",
"started_at": "<string>",
"ended_at": "<string>",
"updated_at": "<string>",
"deleted_at": "<string>"
}