Beta Release
Currently available to selected partners only
Data Sources
REST APIs, documentation pages, and custom data sources
API Endpoints
Streamlined API for flexible integration
Uptime
Reliable service with high availability
Process & Forget
Zero document retention with immediate data disposal
Why Process & Forget Matters
Our revolutionary approach ensures maximum data privacy while maintaining all the benefits of AI-enhanced applications.
Privacy-First Architecture
No Document Storage
Original documents are immediately deleted after processing, leaving only anonymized vectors.
Your Credentials, Your Control
All API keys and service credentials are provided by you with each request - we never store them.
Compliance-Ready
Designed for organizations with strict data protection requirements, including GDPR and HIPAA.
Business Benefits
Reduced Liability
Minimize risk by not storing sensitive customer data, while still leveraging its insights.
Flexible Integration
Only provide credentials for services you're using, making the API adaptable to your specific needs.
Customer Trust
Build stronger relationships by prioritizing data privacy while delivering AI-enhanced experiences.
Powerful Features
Our platform provides everything you need to build intelligent applications with advanced context understanding.
Process & Forget RAG Pipeline
Extract knowledge from documents without storing originals - data is processed, vectorized, and immediately discarded for maximum privacy.
Privacy-First Knowledge Bases
Access insights from multiple sources without persistent storage of sensitive source content, protecting confidential information.
Bring Your Own Credentials
User-provided API keys for OpenAI, Pinecone and other services with each request - no server-side credential storage.
Flexible Data Sources
Query custom indexes without mandatory credentials for unused services, making the API more adaptable to your needs.
Secure Ingestion Pipeline
Process documents with immediate deletion after vector storage to enhance privacy with our 'process and forget' approach.
Modular Authentication
Workspace-based credential system with JWT authentication for customizable security and flexible integration.
How Process & Forget Works
Our privacy-focused RAG system enhances AI responses with contextual information while ensuring sensitive data never persists beyond its use.
1. Privacy-First Processing
Document content is securely processed with your credentials, broken into chunks for efficient analysis, and the original content is immediately discarded.
2. Semantic Knowledge Extraction
Knowledge is extracted and converted into vector embeddings, preserving semantic meaning while stripping away sensitive data, with storage controlled by your own API keys.
3. Privacy-Preserving Responses
Generate context-aware responses by retrieving only the relevant vector embeddings, without accessing original documents, ensuring data privacy throughout the entire process.
Comprehensive API
Our API provides everything you need to integrate advanced retrieval capabilities into your applications.
API Endpoints
Query Endpoints
Retrieve context-aware responses using our main RAG pipeline endpoints with support for conversation history.
Ingestion Endpoints
Automatically fetch and process data from support tickets, Jira issues, and documentation.
Authentication Endpoints
Register users, manage tokens, and handle workspace-specific credentials securely.
Code Examples
POST /api/v1/modular/query HTTP/1.1Host: api.augmentedretrieval.comAuthorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...Content-Type: application/json { "query": { "question": "How do I add a file attachment?", "history": [ {"role": "user", "content": "I need help with file attachments"}, {"role": "assistant", "content": "I'd be happy to help with file attachments. What specifically would you like to know?"} ] }, "sources_config": { "custom_indexes": "my_knowledge_base,documentation", "custom_indexes_top_k": 5 }, "credentials": { "openai": { "api_key": "your_openai_api_key" }, "pinecone": { "api_key": "your_pinecone_api_key", "environment": "your_pinecone_environment" } }}