---
title: "Get batch progress"
method: GET
path: "/v1/batches/{batch_id}/progress"
tags: ["Batches"]
---

# Get batch progress

`GET /v1/batches/{batch_id}/progress`

Retrieve lightweight progress information for a batch without fetching all task details.

## Path parameters

- `batch_id` string, required — The unique identifier of the batch.

## Response `200`

Batch progress returned successfully.

- BatchProgressResponse — Lightweight batch progress without task details.
  - `completed` boolean, required — Whether all tasks in the batch have finished.
  - `completed_at` string — ISO timestamp when the batch completed.
  - `completed_count` number, required — Number of tasks that have completed so far.
  - `id` string, required — Unique identifier for the batch.
  - `progress` number, required — Completion ratio between 0 and 1.
  - `status` 'success', required

## Other responses

- `404` — Batch not found.

---

[API](https://skmtc.net/nimbleway/apis/api-gateway.md) · [All operations](https://skmtc.net/nimbleway/apis/api-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nimbleway/api-gateway/revisions/9bfe220b7a29/schema)
