Completed and failed jobs are cached for 2 hours to improve performance.
Path Parameters
The unique identifier of the workflow
The unique identifier of the job
Response
Unique identifier of the job
ID of the parent workflow
Current status of the job. Possible values: PENDING, RUNNING, COMPLETED, FAILED, CANCELLED
How the job was triggered. Values: AUTOMATIC, MANUAL
ISO 8601 timestamp when the job was scheduled to run
ISO 8601 timestamp when the job started execution (null if not started)
ISO 8601 timestamp when the job completed (null if still running)
ISO 8601 timestamp when the job was created
ISO 8601 timestamp when the job was last updated
Examples
curl -X GET 'https://api.chronoverse.dev/workflows/wf_abc123/jobs/job_xyz789' \
-H 'Authorization: Bearer YOUR_API_TOKEN'
Example Response
{
"id": "job_xyz789",
"workflow_id": "wf_abc123",
"status": "COMPLETED",
"trigger": "AUTOMATIC",
"scheduled_at": "2026-03-03T10:00:00Z",
"started_at": "2026-03-03T10:00:05Z",
"completed_at": "2026-03-03T10:15:32Z",
"created_at": "2026-03-03T09:59:58Z",
"updated_at": "2026-03-03T10:15:32Z"
}