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

# List live, reachable vector stores

> Returns the subset of `[qdrant, weaviate, pgvector, milvus, chroma]` whose Vault secret is present AND whose service responds to a probe. Drives the document-tap pipeline wizard's store picker. Secret presence alone isn't sufficient — the dev stack seeds placeholder secrets for every store, so this endpoint must actually probe each one (2s timeout per store, ~10s worst case if everything is unreachable).



## OpenAPI

````yaml /openapi.yaml get /api/v1/vector-stores/available
openapi: 3.0.3
info:
  title: Datris API
  description: >
    REST API for the Datris AI Data Platform. Ingest, validate, transform,
    store, and retrieve data.


    For AI agent integration, use the [MCP
    Server](https://docs.datris.ai/mcp-server) instead.
  version: 1.0.0
  contact:
    name: Datris
    url: https://datris.ai
  license:
    name: Apache 2.0
servers:
  - url: http://localhost:8080
    description: Local development
security:
  - ApiKeyAuth: []
paths:
  /api/v1/vector-stores/available:
    get:
      tags:
        - Health
      summary: List live, reachable vector stores
      description: >-
        Returns the subset of `[qdrant, weaviate, pgvector, milvus, chroma]`
        whose Vault secret is present AND whose service responds to a probe.
        Drives the document-tap pipeline wizard's store picker. Secret presence
        alone isn't sufficient — the dev stack seeds placeholder secrets for
        every store, so this endpoint must actually probe each one (2s timeout
        per store, ~10s worst case if everything is unreachable).
      responses:
        '200':
          description: Available vector stores
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                example:
                  - pgvector
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Optional API key for authentication (enabled via application.yaml)

````