---
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

---

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