Skip to main content

Vector search entries with full content (SECONDARY)

POST 

/api/v1/vector/entries

Secondary vector search endpoint - Returns full entry objects with S3 content.

This is the COMPREHENSIVE search method that fetches complete entry content from S3. Use this when you need full documents, not just snippets.

Flow:

  1. Query vector is sent to Qdrant
  2. Matching chunks are grouped by entry_id
  3. Entry records are fetched from PostgreSQL
  4. Full content is retrieved from S3 (parallel batch operation)
  5. Results combine entries with their matching chunks

Performance: Typically 200-500ms depending on number of entries

Use cases:

  • Retrieving full documents
  • Document-level results
  • When you need complete content
  • Lower-throughput, higher-quality scenarios

Request

Responses

Successful Response