---
title: "List jobs"
method: GET
path: "/jobs"
---

# List jobs

`GET /jobs`

Returns a paginated list of your upscaling jobs, newest first.

## Query parameters

- `status` 'pending' | 'processing' | 'completed' | 'failed'
- `model` string
- `before` string, date-time
- `after` string, date-time
- `limit` integer
- `cursor` string

## Response `200`

List of jobs.

- JobListResponse
  - `data` Job[], required
    - `id` string, uuid, required
    - `status` 'pending' | 'processing' | 'completed' | 'failed', required
    - `model` string, required
    - `scale` integer, required
    - `result_url` string, uri, nullable — Presigned S3 URL to the upscaled image. Valid for 1 hour.
    - `error` string, nullable — Error message if status is 'failed'.
    - `original_filename` string
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `has_more` boolean, required — Whether there are more results to fetch.
  - `next_cursor` string, nullable — Pass as 'cursor' query param to get next page.

## Other responses

- `401` — Unauthorized.

---

[API](https://skmtc.net/upres/apis/upres-ai-api.md) · [All operations](https://skmtc.net/upres/apis/upres-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/upres/upres-ai-api/versions/620033ac712d/schema)
