---
title: "Get Opensearch Collection Status"
method: POST
path: "/vector/store/status"
tags: ["Vectorization"]
---

# Get Opensearch Collection Status

`POST /vector/store/status`

## Endpoint to Get Vector Store Status
This endpoint returns the status of the specified vector store.

***
## Request Body

| Field               | Type   | Description                      |
|---------------------|--------|----------------------------------|
| store_id            | str    | The ID of the vector store.      |

***

## Example Request Body

    ```json

    {
        "store_id": "b1c2b4c5-6d7e-8f9g-0h1i-2j3k4l5m6n7"
    }

    ```

***
## Response Body

| Field               | Type   | Description                      |
|---------------------|--------|----------------------------------|
| store_id            | str    | The ID of the vector store.      |
| status              | str    | The status of the vector store. Returns "ACTIVE", "CREATING", "DELETING", "FAILED" or "NOT_FOUND". |

***
#### Errors

- **400 Bad Request**: If the store is not found.
- **500 Internal Server Error**: If there is an unexpected error during the retrieval of the vector store status.

## Request body

- VectorStoreStatusRequest
  - `store_id` string, required

## Response `200`

Successful Response

- VectorStoreStatusResponse
  - `store_id` string, 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)
