Skip to main content

List jobs

GET 

/job

Retrieve jobs, optionally filtered by status.

Request

Query Parameters

    status string

    Filter jobs by status (e.g., unprocessed, processing, completed, failed).

Responses

A list of jobs.

Schema

    total_items integer

    Total number of jobs matching the filter.

    items

    object[]

  • Array [

  • id string

    Unique identifier of the job.

    status string

    Current status of the job.

    created string

    Creation timestamp.

    operation

    object

    The operation data.

    property name* any

    The operation data.

    result

    The result data if completed.

    error string

    Error message if failed.

    hostname string

    Worker hostname that processed the job.

    updated_at string

    Last update timestamp.

  • ]

Loading...