---
title: "Check Ingestion Task Status"
method: GET
path: "/v1/artifacts/ingest/async/{task_id}"
tags: ["Artifacts", "Artifacts"]
---

# Check Ingestion Task Status

`GET /v1/artifacts/ingest/async/{task_id}`

Retrieve the current status and results of an asynchronous ingestion task

## Path parameters

- `task_id` string, required — Unique identifier of the ingestion task to check status for

## Response `200`

Successfully retrieved task status and results

- TaskStatusIngestResponse — Represents the status of an asynchronous task, including its ID, status, and result.
  - `task_id` string, required — Unique identifier of the task being monitored
  - `task_status` string, required — Current execution status of the task. Common values: PENDING, SUCCESS, FAILURE, REVOKED
  - `task_result` union, required — Task execution result. Contains typed result data on success, error message string on failure, or None for pending/deletion tasks
    - IngestResponse — Response model for successful document ingestion operations.
      - `object` 'list' — Response object type, always 'list' for ingestion responses
      - `model` 'private-gpt' — Model identifier, always 'private-gpt'
      - `data` IngestedDoc[], required — List of ingested documents with their metadata and processing information
        - `object` 'ingest.document' — Type of the object, indicating this is an ingested document.
        - `artifact` string, required — Unique identifier for the ingested document artifact.
        - `doc_metadata` object, nullable — Metadata associated with the ingested document, such as title, author, and other
    - string

## Other responses

- `401` — Unauthorized
- `404` — Task not found or expired
- `422` — Validation Error

## Changes

- **2026-06-03** `7914e6f947be` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/zylon-ai/apis/private-gpt-api/changes/v1/artifacts/ingest/async/:task_id/get.md)

---

[API](https://skmtc.dev/zylon-ai/apis/private-gpt-api.md) · [All operations](https://skmtc.dev/zylon-ai/apis/private-gpt-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/zylon-ai/private-gpt-api/revisions/4e828cf153c4/schema)
