Documentation Index
Fetch the complete documentation index at: https://docs.eachlabs.ai/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
GET https://workflows.eachlabs.run/api/v1/executions/{executionID}
Path Parameters
| Parameter | Type | Required | Description |
|---|
executionID | string | Yes | Execution UUID |
Code Examples
curl https://workflows.eachlabs.run/api/v1/executions/EXEC_ID \
-H "X-API-Key: YOUR_API_KEY"
Response
{
"execution_id": "69ae8c7b-7500-4a45-b7c0-348b8cc2665b",
"workflow_id": "50741f40-8621-4d46-8a91-dff4d873be98",
"status": "completed",
"started_at": "2025-12-04T11:48:10Z",
"completed_at": "2025-12-04T11:50:53Z",
"inputs": {
"prompt": "A majestic mountain landscape"
},
"step_outputs": {
"step1": {
"step_id": "step1",
"status": "completed",
"started_at": "2025-12-04T11:48:10Z",
"completed_at": "2025-12-04T11:48:39Z",
"output": "A breathtaking panoramic view...",
"primary": "A breathtaking panoramic view...",
"metadata": {
"model": "openai-chatgpt-5",
"version": "0.0.1",
"params": {
"system_prompt": "You are a helpful assistant",
"user_prompt": "A majestic mountain landscape",
"max_output_tokens": 512
}
}
},
"step2": {
"step_id": "step2",
"status": "completed",
"started_at": "2025-12-04T11:48:39Z",
"completed_at": "2025-12-04T11:50:53Z",
"output": ["https://storage.googleapis.com/uploads/image1.png"],
"primary": "https://storage.googleapis.com/uploads/image1.png",
"metadata": {
"model": "flux-1-1-pro",
"version": "0.0.1"
}
}
},
"output": ["https://storage.googleapis.com/uploads/image1.png"]
}
Response Fields
| Field | Type | Description |
|---|
execution_id | string | Execution UUID |
workflow_id | string | Workflow UUID |
bulk_id | string | null | Bulk operation ID (if triggered via bulk-trigger) |
status | string | running, completed, failed, or cancelled |
started_at | string | Start timestamp |
completed_at | string | null | Completion timestamp |
inputs | object | Input parameters used |
step_outputs | object | Map of step ID → StepOutput |
output | any | null | Final workflow output (only when completed) |
error | string | null | Error type (only when failed) |
error_cause | string | null | Detailed error message (only when failed) |
Execution Statuses
| Status | Description |
|---|
running | Workflow is executing |
completed | All steps finished successfully |
failed | A step encountered an error |
cancelled | Execution was cancelled |
Error Responses
| Status | Body | Description |
|---|
401 | {"error": "Invalid or missing API key"} | Authentication failure |
404 | {"error": "execution not found"} | Invalid execution ID |