List jobs

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

get/jobs

Query parameters

status'pending' | 'uploading' | 'processing' | 'downloading' | 'completed' | 'failed' | 'canceled'

Filter by job status.

model'flare' | 'prism' | 'lumen' | 'mirage' | 'motion' | 'motion-x'

What to upscale with.

  • flare: everyday photos, fastest and cheapest, up to 4x.
  • prism: text, logos and product shots. Adds no detail that was not in the original. Up to 4x.
  • lumen: maximum real detail recovery, for print. Up to 8x.
  • mirage: invents plausible new detail. Most dramatic, least faithful. Up to 8x.
  • motion: standard video upscale, up to 4x.
  • motion-x: cinema-grade video, slower and dearer, up to 4x.
Example:flare

Filter by model.

beforestring date-time

Return jobs created before this timestamp (ISO 8601).

afterstring date-time

Return jobs created after this timestamp (ISO 8601).

limitinteger

Number of jobs to return.

cursorstring

Pagination cursor from next_cursor of previous response.

Response

List of jobs.

has_moreboolean required

Whether there are more results to fetch.

next_cursorstring nullable required

Pass as 'cursor' query param to get next page.

Example response

{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "status": "completed",
      "model": "flare",
      "scale": 4,
      "original_filename": "photo.jpg",
      "result_url": "https://cdn.upres.ai/results/abc123.png"
    }
  ]
}

Changes

Changed in 1 of the 2 revisions of this API.2917

  • a1a5f505549c2917See the full diff
    • the query request parameter model was restricted to a list of enum values

      request-parameter-became-enum

    • the response property data/items/original_filename became nullable for the status 200

      response-property-became-nullable

    • added the new canceled enum value to the data/items/status response property for the response status 200

      response-property-enum-value-added

    • added the new downloading enum value to the data/items/status response property for the response status 200

      response-property-enum-value-added

    • added the new flare enum value to the data/items/model response property for the response status 200

      response-property-enum-value-added

    • added the new lumen enum value to the data/items/model response property for the response status 200

      response-property-enum-value-added

    • added the new mirage enum value to the data/items/model response property for the response status 200

      response-property-enum-value-added

    • added the new motion enum value to the data/items/model response property for the response status 200

      response-property-enum-value-added

    • added the new motion-x enum value to the data/items/model response property for the response status 200

      response-property-enum-value-added

    • added the new prism enum value to the data/items/model response property for the response status 200

      response-property-enum-value-added

    • added the new uploading enum value to the data/items/status response property for the response status 200

      response-property-enum-value-added

    • added the new enum value canceled to the query request parameter status

      request-parameter-enum-value-added

    • added the new enum value downloading to the query request parameter status

      request-parameter-enum-value-added

    • added the new enum value flare to the query request parameter model

      request-parameter-enum-value-added

    • added the new enum value lumen to the query request parameter model

      request-parameter-enum-value-added

    • added the new enum value mirage to the query request parameter model

      request-parameter-enum-value-added

    • added the new enum value motion to the query request parameter model

      request-parameter-enum-value-added

    • added the new enum value motion-x to the query request parameter model

      request-parameter-enum-value-added

    • added the new enum value prism to the query request parameter model

      request-parameter-enum-value-added

    • added the new enum value uploading to the query request parameter status

      request-parameter-enum-value-added

    • added the non-success response with the status 400

      response-non-success-status-added

    • added the optional property issues to the response with the 401 status

      response-optional-property-added

    • the response property data/items/error became required for the status 200

      response-property-became-required

    • the response property data/items/original_filename became required for the status 200

      response-property-became-required

    • the response property data/items/result_url became required for the status 200

      response-property-became-required

    • the response property next_cursor became required for the status 200

      response-property-became-required

    • added the required property data/items/frames_done to the response with the 200 status

      response-required-property-added

    • added the required property data/items/frames_total to the response with the 200 status

      response-required-property-added

    This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog