Path Parameters
Unique identifier of the workflow to retrieve analytics for
Response
Unique identifier of the workflow
total_job_execution_duration
Total job execution duration in seconds for all jobs in this workflow
Total number of jobs ever created by this workflow, including active, terminated, and deleted jobs
Total number of job logs generated by this workflow across all its jobs
The user ID is automatically extracted from the authentication context. Only workflows owned by the authenticated user can be accessed.
Example Request
curl -X GET "https://api.chronoverse.com/analytics/wf_abc123" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Example Response
{
"workflow_id": "wf_abc123",
"total_job_execution_duration": 3456,
"total_jobs": 127,
"total_joblogs": 8943
}