> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mielto.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List All Vector Stores

> List all available vector stores from the codebase.

This endpoint scans the mielto/vectordb directory and returns all
available vector store implementations that can be used in the system.

**Example:**
```
GET /integrations/vector-stores
```

**Response:**
```json
{
  "vector_stores": [
    {
      "id": "pgvector",
      "name": "PostgreSQL (pgvector)",
      "type": "vector_store",
      "path": "mielto.vectordb.pgvector"
    },
    {
      "id": "pineconedb",
      "name": "Pinecone",
      "type": "vector_store",
      "path": "mielto.vectordb.pineconedb"
    }
  ],
  "total": 17
}
```



## OpenAPI

````yaml api-reference/openapi.json get /api/v1/integrations/vector-stores
openapi: 3.1.0
info:
  title: FastAPI app
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/integrations/vector-stores:
    get:
      tags:
        - Integrations
      summary: List All Vector Stores
      description: |-
        List all available vector stores from the codebase.

        This endpoint scans the mielto/vectordb directory and returns all
        available vector store implementations that can be used in the system.

        **Example:**
        ```
        GET /integrations/vector-stores
        ```

        **Response:**
        ```json
        {
          "vector_stores": [
            {
              "id": "pgvector",
              "name": "PostgreSQL (pgvector)",
              "type": "vector_store",
              "path": "mielto.vectordb.pgvector"
            },
            {
              "id": "pineconedb",
              "name": "Pinecone",
              "type": "vector_store",
              "path": "mielto.vectordb.pineconedb"
            }
          ],
          "total": 17
        }
        ```
      operationId: list_all_vector_stores_api_v1_integrations_vector_stores_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````