---
title: "Get Vectorize Job Status"
method: GET
path: "/vector/job/status/{vectorize_job_id}"
tags: ["Vectorization"]
---

# Get Vectorize Job Status

`GET /vector/job/status/{vectorize_job_id}`

## Endpoint to Get Vectorization Job Status
This endpoint returns the status of a vectorization job.

***
## Request Parameters

| Field               | Type   | Description                      |
|---------------------|--------|----------------------------------|
| vectorize_job_id    | str    | The ID of the vectorization job. |

***
## Response Body

| Field               | Type   | Description                      |
|---------------------|--------|----------------------------------|
| vectorize_job_id    | str    | The ID of the vectorization job. |
| vector_store_id     | str    | The ID of the vector store.      |
| index_id            | str    | The ID of the index.             |
| chunking_job_id     | str    | The ID of the chunking job.      |
| total_file_count    | int    | The total number of files to be vectorized. |
| completed_file_count| int    | The number of files that have been vectorized. |
| failed_file_count   | int    | The number of files that failed to be vectorized. |
| status              | str    | The status of the vectorization job. |

***
#### Errors

- **400 Bad Request**: If the vectorization job is not found.
- **500 Internal Server Error**: If there is an unexpected error during the vectorization process.

## Path parameters

- `vectorize_job_id` string, required

## Response `200`

Successful Response

- VectorizationJobStatusResponse
  - `vectorize_job_id` string, required
  - `vector_store_id` string, required
  - `index_id` string, required
  - `chunking_job_id` string, required
  - `total_file_count` integer, required
  - `completed_file_count` integer, required
  - `failed_file_count` integer, required
  - `status` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/aws-samples/apis/generative-ai-foundational-platform-api.md) · [All operations](https://skmtc.dev/aws-samples/apis/generative-ai-foundational-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/aws-samples/generative-ai-foundational-platform-api/revisions/8831d08902e9/schema)
