---
title: "Check Task Status"
method: POST
path: "/get-task-status"
tags: ["Tasks"]
---

# Check Task Status

`POST /get-task-status`

Get current status and progress of an upscaling task.
Returns detailed information about the task including processed files and progress.

## Request body

- object
  - `taskId` string, uuid, required — Task ID returned by start-task endpoint. See [Start Image Upscaling Task](/start-a-new-task).

## Response `200`

Task status retrieved successfully

- TaskStatus
  - `status` 'success', required
  - `data` object, required
    - `batchMode` boolean — Whether task is in batch mode
    - `enhanceFace` boolean — Whether face enhancement is enabled
    - `error` string — Error message if task failed
    - `files` ProcessedFile[]
      - `fileName` string
      - `fileType` string
      - `path` string
      - `createdAt` integer
      - `expiresAt` integer
      - `originalFileName` string
      - `fileSize` integer
      - `downloadLink` string, uri
      - `thumbnailLink` string, uri
      - `finalFileSize` integer
      - `processedFileName` string
      - `dimensions` object
        - `width` integer
        - `height` integer
    - `model` 'upscayl-standard-4x' | 'upscayl-lite-4x' | 'clear-boost-4x' | 'crystal-plus-4x' | 'digital-art-4x' | 'digital-art-plus-4x' | 'natural-max-4x' | 'natural-plus-4x' | 'nature-boost-4x' | 'pure-boost-4x' | 'quick-clear-4x' | 'texture-boost-4x' — AI model used for processing
    - `progress` string — Processing progress percentage
    - `scale` string — Upscale factor applied
    - `status` 'pending' | 'processing' | 'completed' | 'failed'
    - `saveImageAs` 'png' | 'jpg' | 'webp'
    - `creditsDeducted` boolean
    - `deductedCredits` number

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed or API key missing
- `404` — Requested resource not found
- `429` — Rate limit exceeded
- `500` — Internal server error occurred

## Changes

- **2025-02-01** `3a2f19f6a906` — 13 warning
  - removed the optional property `data/compression` from the response with the `200` status
  - added the new `clear-boost-4x` enum value to the `data/model` response property for the response status `200`
  - added the new `crystal-plus-4x` enum value to the `data/model` response property for the response status `200`
  - added the new `digital-art-4x` enum value to the `data/model` response property for the response status `200`
  - …9 more
- **2025-01-14** `5c6242cc0763` — 5 breaking, 6 warning, 9 info
  - added the new required request property `taskId`
  - request body became required
  - removed the media type `text/plain` for the response with the status `400`
  - removed the media type `text/plain` for the response with the status `404`
  - …16 more
- **2024-11-10** `ce3636863d93` — 4 warning, 1 info
  - removed the optional property `data/createdAt` from the response with the `200` status
  - removed the optional property `data/endedAt` from the response with the `200` status
  - removed the optional property `data/id` from the response with the `200` status
  - removed the optional property `data/userId` from the response with the `200` status
  - …1 more
- **2024-10-22** `77e0fca87b92` — 1 info
  - endpoint added
- **2024-10-22** `fa796ac65c29` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/upscayl/apis/upscayl-cloud-api/changes/get-task-status/post.md)

---

[API](https://skmtc.dev/upscayl/apis/upscayl-cloud-api.md) · [All operations](https://skmtc.dev/upscayl/apis/upscayl-cloud-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/upscayl/upscayl-cloud-api/revisions/2320ccb2ffed/schema)
