---
title: "Get project import status"
method: GET
path: "/api/projects/{id}/imports/{import_pk}/"
tags: ["Projects"]
---

# Get project import status

`GET /api/projects/{id}/imports/{import_pk}/`

Poll the status of an asynchronous project import operation.
            
            **Usage:**
            1. When you POST to `/api/projects/{project_id}/import`, you'll receive a response like `{"import": <import_id>}`
            2. Use that `import_id` with this GET endpoint to check the import status
            3. Poll this endpoint to see if the import has completed, is still processing, or has failed
            4. **Import errors and failures will only be visible in this GET response**, not in the original POST request
            
            This endpoint returns detailed information about the import including task counts, status, and any error messages.

## Path parameters

- `id` integer, required
- `import_pk` integer, required

## Response `200`

- ProjectImport
  - `annotation_count` integer
  - `commit_to_project` boolean
  - `could_be_tasks_list` boolean
  - `created_at` string, date-time, nullable, required — Creation time
  - `data_columns` unknown
  - `duration` integer
  - `error` string, nullable
  - `file_upload_ids` unknown
  - `finished_at` string, date-time, nullable — Complete or fail time
  - `found_formats` unknown
  - `id` integer, required
  - `preannotated_from_fields` unknown
  - `prediction_count` integer
  - `project` integer, nullable
  - `return_task_ids` boolean
  - `status` 'created' | 'in_progress' | 'failed' | 'completed' — * `created` - Created * `in_progress` - In progress * `failed` - Failed * `completed` - Completed
  - `task_count` integer
  - `task_ids` unknown
  - `tasks` unknown
  - `updated_at` string, date-time, nullable, required — Updated time
  - `url` string, nullable

---

[API](https://skmtc.dev/humansignal/apis/label-studio-api.md) · [All operations](https://skmtc.dev/humansignal/apis/label-studio-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/humansignal/label-studio-api/revisions/b589624c66c3/schema)
