v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Workflows

Get a workflow run log

Returns one run with its per-node results. Requires a USER API key.

get/public/v1/workflows/{workflowId}/logs/{logId}

Path parameters

workflowIdnumber nullable
Example:501
logIdnumber nullable
Example:9001

Response

The run log with node results

idnumber required
successfulboolean required
started_atstring nullable
completed_atstring nullable
durationnumber nullable

Run duration in ms.

operationsnumber nullable
ai_creditsnumber nullable
errorstring nullable
insufficient_creditsboolean nullable
prevented_loopboolean nullable

Example response

{
  "id": 501,
  "started_at": "example",
  "completed_at": "example",
  "duration": 1,
  "operations": 1,
  "ai_credits": 1,
  "error": "example",
  "node_results": [
    {
      "id": 1,
      "node_id": "example",
      "alias": "example",
      "type": "example",
      "error": "example",
      "ai_credits": 1,
      "created_at": "example",
      "audit_log_id": "example"
    }
  ]
}