API ReferenceWorkflowsList Workflow Runs

GET GET /workflows/{workflow_id}/runs

Returns paginated workflow runs filtered by status or date range.

cURL

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

JavaScript

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

Python

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