v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Workflows

List workflow run logs

Lists the run history (executions) of a workflow. Requires a USER API key.

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

Path parameters

workflowIdnumber nullable
Example:501

Query parameters

status'COMPLETED' | 'PENDING' | 'FAILED'
Example:COMPLETED
start_datestring nullable
Example:2026-01-01
end_datestring nullable
Example:2026-12-31

Response

A list of runs

Example response

{
  "results": [
    {
      "id": 501,
      "started_at": "example",
      "completed_at": "example",
      "duration": 1,
      "operations": 1,
      "ai_credits": 1,
      "error": "example"
    }
  ]
}