List Jobs for a given workflow id
cURL
curl --request GET \ --url https://api.pixxel.space/v0/workflows/{workflow_id}/jobs \ --header 'Authorization: <api-key>'
{ "jobs": [ { "created_by": "<string>", "id": "<string>", "cost": 123, "workflow_id": "<string>", "created_at": "<string>", "updated_at": "<string>", "finished_at": "<string>", "estimated_duration": 123, "progress": "<string>", "status": "<string>", "time_taken": "<string>" } ] }
Unique identifier for the workflow to list jobs from
Filter by specific job ID
Filter jobs by their current status (e.g., running, completed)
Filter jobs by user who created them
Filter jobs by creation date
OK
Show child attributes
ID of the user who created the job
unique identifier for the job
cost of the job
unique identifier of the workflow the job belongs to
timestamp when the job was created
timestamp when the job was last updated
timestamp when the job was completed
expected time to complete the job in seconds
current completion percentage of the job
current state of the job
actual duration the job took to complete