VeloForge Semantic Search API
Semantic search / vector search API with Postgres persistence. Index text, search by meaning (OpenAI embeddings). VeloForge is a stupid-simple semantic search / vector search API for RAG and knowledge-base search. Index documents with POST /index, then retrieve meaning-based matches with POST /search using embeddings and cosine similarity. Works great for chatbots, support docs, internal wikis,…
VeloForge Semantic Search API endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET |
Health /health |
Health check. Returns status and supported endpoints. |
| GET |
Meter /meter |
Returns current usage and rate limit information for this API key. |
| POST |
Index /index |
Indexes documents for semantic search. Each item must include an id and text, with optional metadata. |
| POST |
Search /search |
Runs semantic search over indexed documents and returns the top matches. |