GET
/
v0
/
workflows
/
{workflow_id}
/
jobs
List Jobs
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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

workflow_id
string
required

Unique identifier for the workflow to list jobs from

Query Parameters

id
string

Filter by specific job ID

status
string

Filter jobs by their current status (e.g., running, completed)

created_by
string

Filter jobs by user who created them

created_on
string

Filter jobs by creation date

Response

200
application/json

OK

The response is of type object.