API ReferenceWorkflowsGet Workflow Run

GET GET /workflows/{workflow_id}/runs/{run_id}

Retrieve node-level statuses, outputs, and timestamps for a workflow execution.

cURL

curl https://api.algorythmos.fr/workflows/invoice-processing/runs/run_8Y2hP \
 -H "x-api-key: $ALG_KEY"

JavaScript

const res = await fetch('https://api.algorythmos.fr/workflows/invoice-processing/runs/run_8Y2hP', {
  headers: { 'x-api-key': process.env.ALG_KEY }
})
const workflowRun = await res.json()

Python

import requests, os
workflow_run = requests.get(
  'https://api.algorythmos.fr/workflows/invoice-processing/runs/run_8Y2hP',
  headers={'x-api-key': os.environ['ALG_KEY']}
)
print(workflow_run.json())