Response
Total number of workflows ever created by the user, including active, terminated, and deleted workflows
Total number of jobs ever created by the user’s workflows, including active, terminated, and deleted jobs
Total number of job logs generated by the user’s workflows across all jobs
total_job_execution_duration
Sum of job execution durations for all jobs in seconds
The user ID is automatically extracted from the authentication context. Analytics include data from all workflows, including those that have been terminated or deleted.
Example Request
curl -X GET "https://api.chronoverse.com/analytics" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Example Response
{
"total_workflows": 42,
"total_jobs": 1337,
"total_joblogs": 45892,
"total_job_execution_duration": 156789
}