Skip to main content
GET
/
api
/
v1
/
workflow
/
manager
/
executions
/
thread
/
{threadId}
/
status
Get execution status by thread ID
curl --request GET \
  --url https://flowra.dev/api/v1/workflow/manager/executions/thread/{threadId}/status \
  --header 'x-api-key: <api-key>'
{
  "threadId": "<string>",
  "workflowId": "<string>",
  "status": "running",
  "completedNodes": [
    "<string>"
  ],
  "failedNodes": [
    "<string>"
  ],
  "errors": [
    {}
  ],
  "currentNodeId": "<string>",
  "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

threadId
string
required

Response

200 - application/json

Workflow execution status retrieved successfully