Skip to main content
GET
/
workflow
/
{id}
/
runs
/
{rid}
/
result
Return the result of a specific workflow run
curl --request GET \
  --url http://localhost:3001/workflow/{id}/runs/{rid}/result
{
  "workflowId": "<string>",
  "runId": "<string>",
  "input": "<unknown>",
  "output": "<unknown>",
  "trace": {
    "destinations": {
      "local": "<string>",
      "remote": "<string>"
    }
  },
  "status": "completed",
  "error": "<string>"
}

Path Parameters

id
string
required
rid
string<uuid>
required

The specific run id to target

Response

The workflow result

workflowId
string

The workflow execution id

runId
string

The specific run id for this execution

input
any

The original input passed to the workflow, null if unavailable

output
any

The result of workflow, null if workflow failed

trace
object

An object with information about the trace generated by the execution

status
enum<string>

The workflow execution status

Available options:
completed,
failed,
canceled,
terminated,
timed_out,
continued
error
string | null

Error message if workflow failed, null otherwise