Encrypted JSON database with SQL
Schema-free storage. Full ACID transactions. Row-level encryption. Built-in key-value cache. All in a single binary.
Store any JSON structure. Query with SQL. Support for nested objects and arrays.
No compromises on data integrity. Synchronous writes to disk, snapshot isolation, and WAL.
Security isn't an afterthought. Row-level and index-level encryption. Rotatable keys.
Granular table-level access control working out of the box. No plugins required.
Every property is indexed automatically. Stop worrying about query optimization.
1 Billion key/value pairs. 10K writes/sec, 10K lookups/sec. No Redis needed.
A single binary that runs anywhere. No runtimes, no DLL hell.
Use it from Python, C#, Go, or Node via a simple HTTP REST API.
Lightning-fast lookups by ID, SKU, or any field. Find order #INV-2024-0847 in microseconds across millions of records.
Typo-tolerant matching. "Micheal" finds "Michael". "Kristopher" finds "Christopher". Perfect for call centers and customer service.
Search inside documents, notes, and long text fields. Find contracts mentioning "intellectual property" across 50,000 files in under a second.
Understands meaning, not just keywords. Search "fast shipping" and find "expedited delivery". Built-in vector embeddings with HNSW indexing.
Files stored alongside your data with AES-256-GCM encryption. No separate object store needed.
Auto-extract text from PDF, DOCX, XLSX, images, and more. Built-in OCR for scanned documents.
Search files by meaning, not just keywords. Find "quarterly revenue" inside a PDF titled "Q3 Report" using AI embeddings.
Full revision tracking for every file. View, compare, and restore previous versions with configurable retention.
Ask questions in plain English. "How many patients last month?" or "Show invoices over $10K" — answered in seconds from your actual data.
Automated deep-dive reports with charts, tables, and insights. "Analyze hospital demographics by department" produces a complete report.
Update records through natural language. "Change Dr. Smith's department to Cardiology" — with confirmation and audit trail.
Set up recurring analysis tasks. Weekly sales summaries, daily patient counts, monthly compliance audits — all automated.
import requests base_url = "http://localhost:8080" # Authenticate and get JWT token login = requests.post(f"{base_url}/api/auth/login", json={ "username": "superadmin", "password": "your-password" }) headers = {"Authorization": f"Bearer {login.json()['token']}"} # Insert a document — no schema needed order = { "customer": "Acme Corp", "items": [ {"sku": "WIDGET-A1", "qty": 5, "price": 29.99}, {"sku": "GADGET-B2", "qty": 2, "price": 49.99} ], "total": 249.93, "status": "pending" } res = requests.post(f"{base_url}/db/Sales/Order", json=order, headers=headers) doc_id = res.json()["id"] # Retrieve by ID doc = requests.get(f"{base_url}/db/Sales/Order/{doc_id}", headers=headers) print(doc.json()) # Query with SQL result = requests.post(f"{base_url}/sql", json={ "sql": "SELECT customer, total FROM Sales.Order WHERE status = 'pending' ORDER BY total DESC" }, headers=headers) print(result.json())
Every tier includes the complete database — all features, all search capabilities, file storage, AI agent, encryption, RBAC, and REST API. No feature gates.
Personal license · Email support
Commercial license · Email support
From clinics to courtrooms, warehouses to classrooms — if you store data, manage files, need search, or want AI-powered insights, InventDB is built for you.
Any business that stores data, manages files, needs search, or wants AI-powered insights from their own data — without the cost and complexity of enterprise software.
PostgreSQL is the gold standard of relational databases — battle-tested over 40 years and trusted worldwide. We benchmark InventDB against PostgreSQL because that is the standard we aspire to. Transparency in performance is how we hold ourselves accountable.
Be among the first to get access. We'll send you a verification code to confirm your spot.
We've sent a 6-digit code to
We'll email you as soon as beta access is ready. Thank you for your interest in InventDB.