Documentation
Everything you need to build
Comprehensive API reference, core concepts, and guides to help you integrate Jabrod RAG pipelines into your applications quickly.
Simple, powerful REST API
Query your knowledge bases from any language or framework. Generate a pipeline-scoped API key and start making semantic search requests in seconds.
- Pipeline-scoped API keys for secure access
- Semantic search with configurable Top K
- Multiple chunking strategies (Fixed, Sentence, Semantic)
- Support for OpenAI, Nomic, Cohere, and Voyage embeddings
query.sh
# Query your pipeline with semantic search
curl -X POST https://api.jabrod.com/api/rag/query \
-H "Authorization: Bearer rag_your_key" \
-H "Content-Type: application/json" \
-d '{
"query": "What is the refund policy?",
"topK": 5
}'
# Response
{
"results": [{
"content": "Returns within 30 days...",
"score": 0.89
}]
}