Skip to main content
GET
/
api
/
data-readiness
/
workflows
/
{configuration_id}
/
runs
/
{run_id}
/
statistics
Get Workflow Run Statistics
curl --request GET \
  --url https://api.example.com/api/data-readiness/workflows/{configuration_id}/runs/{run_id}/statistics \
  --header 'Authorization: Bearer <token>'
{
  "duration_seconds": 300.5,
  "run_id": "123e4567-e89b-12d3-a456-426614174002",
  "tasks_completed": 8,
  "tasks_failed": 1,
  "tasks_total": 10
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

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

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header as: Authorization: Bearer <token>. The JWT must contain valid client_id, and project_id claims for tenant isolation and SDK routing.

Path Parameters

configuration_id
string<uuid>
required

Configuration ID

run_id
string<uuid>
required

Run ID

Response

Successful Response

Statistics for a specific workflow run.

run_id
string<uuid>
required

Run identifier

Example:

"123e4567-e89b-12d3-a456-426614174002"

tasks_completed
integer
required

Number of completed tasks

Example:

8

tasks_failed
integer
required

Number of failed tasks

Example:

1

tasks_total
integer
required

Total number of tasks

Example:

10

duration_seconds
number | null

Total run duration in seconds

Example:

300.5