v1
latestOpenAPI 3.1.02026-07-263644911022.4 KBExecutions API
Get Execution Results
Use this endpoint to retrieve the results of a completed workflow execution. The execution must be in a terminal state.
get/v1/executions/{id}/results
Path parameters
idstring uuid required
Unique identifier of the execution.
Response
Indicates that the request was successful and the response contains the requested data.
Example response
{
"executionId": "f7e6d5c4-b3a2-1098-7654-321fedcba098",
"workflowId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "completed",
"stepResults": [
{
"stepNumber": 1,
"stepName": "action_log-event",
"nodeId": "log-event",
"status": "completed",
"output": {
"action": "log"
},
"executedAt": "2026-03-17T14:35:00Z",
"durationMs": 0
}
],
"finalOutput": {
"workflow": {
"transactionId": "txn-98765",
"amount": 1500,
"currency": "BRL",
"customerId": "cust-12345",
"message": "Payment received"
}
},
"startedAt": "2026-03-17T14:35:00Z",
"completedAt": "2026-03-17T14:35:00Z"
}