Skip to main content
GET
/
api
/
v1
/
workflow
/
manager
/
executions
/
{id}
Get workflow execution detail
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": {}
}

Authorizations

x-api-key
string
header
required

Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:

Path Parameters

id
string
required

Response

200 - application/json

Workflow execution detail retrieved successfully