curl --request GET \
--url https://flowra.dev/api/v1/workflow/manager/executions/{id} \
--header 'x-api-key: <api-key>'{
"id": "<string>",
"workflowId": "<string>",
"userId": "<string>",
"status": "running",
"executionMode": "test",
"startedAt": "2023-11-07T05:31:56Z",
"workflowName": "<string>",
"projectId": "<string>",
"workspaceId": "<string>",
"threadId": "<string>",
"assistantId": "<string>",
"inputData": {},
"outputData": {},
"currentNodeId": "<string>",
"executionSummary": "<unknown>",
"workflowType": "agent",
"completedAt": "2023-11-07T05:31:56Z",
"executionDurationMs": 123,
"state": {}
}Returns full details of a single run: inputs, outputs, steps executed, status, and any errors. Use to debug or inspect a specific execution.
curl --request GET \
--url https://flowra.dev/api/v1/workflow/manager/executions/{id} \
--header 'x-api-key: <api-key>'{
"id": "<string>",
"workflowId": "<string>",
"userId": "<string>",
"status": "running",
"executionMode": "test",
"startedAt": "2023-11-07T05:31:56Z",
"workflowName": "<string>",
"projectId": "<string>",
"workspaceId": "<string>",
"threadId": "<string>",
"assistantId": "<string>",
"inputData": {},
"outputData": {},
"currentNodeId": "<string>",
"executionSummary": "<unknown>",
"workflowType": "agent",
"completedAt": "2023-11-07T05:31:56Z",
"executionDurationMs": 123,
"state": {}
}Was this page helpful?