This endpoint allows users to retrieve detailed information about a specific job within a workflow by providing both the workflow_id
and job_id
. It returns metadata including job status, progress, timing details, associated tasks, and cost. Authentication via a bearer token is required.
GET
/v0/workflows/{workflow_id}/jobs/{job_id}
You need the api key which you can get from the API tab in Organization Settings. The api key is required in almost all the commands
The workflow_id
identifies the workflow context in which the job was created, and the job_id
uniquely identifies the job. Together, they ensure precise retrieval of the correct job’s full metadata from within a larger workflow system.
Name | Type | Required | Description |
---|---|---|---|
workflow_id | string | Yes | Unique identifier of the workflow |
job_id | string | Yes | Unique identifier of the job within the specified workflow |
A 200 OK response returns full metadata for a job, including execution timestamps, creator, duration, cost, and progress. It also includes task and validation error details, if applicable. This response is useful for monitoring, debugging, or auditing purposes in workflow pipelines.
Name | Type | Description |
---|---|---|
created_by | string | ID of the user who created the job |
status | string | Current status of the job (e.g., running, completed, failed) |
time_taken | string | Actual time taken to complete the job |
id | string | Unique identifier of the job |
tasks | object[] | List of tasks executed in this job |
val_errors | object[] | List of validation errors encountered |
spec | integer[] | Raw specification values associated with the job |
cost | integer | Estimated or actual cost of job execution |
workflow_id | string | ID of the workflow the job belongs to |
updated_at | string | Timestamp of the last update to the job |
finished_at | string | Timestamp when job completed |
exec_created_at | string | Timestamp when execution of job started |
exec_updated_at | string | Timestamp of last execution-related update |
created_at | string | Timestamp when the job was originally created |
estimated_duration | integer | Estimated time to complete the job in seconds |
progress | string | Job progress, typically a percentage (e.g., “75%”) |
https://api.pixxel.space/v0/workflows/{workflow_id}/jobs/{job_id}
. Include your bearer token in the Authorization header.