Skip to main content
GET
/
v1
/
workflow-runs
/
{workflowRunID}
/
debug
Get workflow run debug view
curl --request GET \
  --url https://api.strait.dev/v1/workflow-runs/{workflowRunID}/debug \
  --header 'Authorization: Bearer <token>'
{
  "data_flow": [
    {
      "from_step_ref": "<string>",
      "to_step_ref": "<string>",
      "data_size_bytes": 123
    }
  ],
  "status": "<string>",
  "steps": [
    {
      "attempt": 123,
      "duration_ms": 123,
      "status": "<string>",
      "step_ref": "<string>",
      "step_run_id": "<string>",
      "step_type": "<string>",
      "cost_microusd": 123,
      "depends_on": [
        "<string>"
      ],
      "error": "<string>",
      "finished_at": "2023-11-07T05:31:56Z",
      "input": "<unknown>",
      "job_run_id": "<string>",
      "output": "<unknown>",
      "started_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total_cost_microusd": 123,
  "total_duration_ms": 123,
  "workflow_id": "<string>",
  "workflow_run_id": "<string>",
  "$schema": "<string>",
  "error": "<string>",
  "finished_at": "2023-11-07T05:31:56Z",
  "payload": "<unknown>",
  "started_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.strait.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key passed as Bearer token

Path Parameters

workflowRunID
string
required

Response

OK

data_flow
object[] | null
required
status
string
required
steps
object[] | null
required
total_cost_microusd
integer<int64>
required
total_duration_ms
integer<int64>
required
workflow_id
string
required
workflow_run_id
string
required
$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

"https://api.strait.dev/schemas/DebugView.json"

error
string
finished_at
string<date-time>
payload
any
started_at
string<date-time>