Jobs

Get job results

Will return partial results while job is still processing. Only returns the latest version of each image (image_index, group_index).

GET
/jobs/{job_id}/results
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

Path Parameters

job_idstring

Response Body

Examples

curl -X GET "https://loading/jobs/string/results"
{
  "error_message": "string",
  "job_id": "string",
  "job_type": "string",
  "post_processing_error": null,
  "post_processing_status": "string",
  "results": [
    {
      "created_at": "string",
      "error_message": "string",
      "feedback": "like",
      "feedback_comment": "string",
      "group_index": 0,
      "image_index": 0,
      "input_description": {},
      "inputs": [
        {
          "full_size": null,
          "thumbnail": null
        }
      ],
      "original_filename": "string",
      "output": {
        "full_size": null,
        "thumbnail": null
      },
      "processing_time": 0,
      "quality_score": 0,
      "status": "string",
      "version": 0
    }
  ],
  "should_post_process": true,
  "status": "string",
  "summary": {
    "average_quality_score": 0,
    "failed": 0,
    "success_rate": 0,
    "successful": 0,
    "total_images": 0
  }
}
Empty