Skip to main content
GET
Get all jobs.
This endpoint allows you to list all the jobs that you have created. They are sorted in descending order by the time they were created (latest job first). For performance reasons, job results are not included in the response. Retrieve the results by using the get job endpoint. By default the API will return the first 10 jobs. You can use the limit and cursor query parameters to paginate through the list of jobs.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number
default:10

Number of jobs to return

Required range: 1 <= x <= 100
Example:

10

cursor
string<uuid>

Cursor for pagination. Pass the nextCursor value from the previous response.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

status
enum<string>

Status of the jobs to return

Available options:
pending,
created,
succeeded,
canceled,
failed,
running
Example:

"succeeded"

Response

items
object[]
required

List of jobs. Sorted by creation date, descending. Does not include output data.

nextCursor
string | null
required

Cursor to pass as cursor query param to get the next page. Null if there are no more results.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"