Managed NoSQL document database
InceptionDB stores JSON documents in databases and collections exposed through an HTTP API.
Key features
Create databases, manage collections, and work with JSON documents using action-based endpoints.
Flexible document model
Store JSON documents with dynamic schemas in collections, and query them with filters and indexes.
Collection operations
Use collection actions such as :insert, :find, :patch, and :remove.
Database access keys
Access databases through owner authentication or database API keys.
Quick start
Get started with InceptionDB in seconds using the API.
1curl -X POST https://inceptiondb.hola.cloud/v1/databases \
2 -H 'X-Glue-Authentication: {"user":{"id":"user-123"}}' \
3 -d '{"name": "mydb"}'
4
5# Create a collection
6curl -X POST https://inceptiondb.hola.cloud/v1/databases/database-123/collections \
7 -H 'Api-Key: $API_KEY' -H 'Api-Secret: $API_SECRET' \
8 -d '{"name": "users"}'
9
10# Insert a document
11curl -X POST https://inceptiondb.hola.cloud/v1/databases/database-123/collections/users:insert \
12 -H 'Api-Key: $API_KEY' -H 'Api-Secret: $API_SECRET' \
13 -d '{"name": "Alice", "email": "alice@example.com"}'
Common use cases
Content management systems
Build and deploy with InceptionDB on HolaCloud's enterprise platform, designed for security, reliability, and scale.
Real-time analytics dashboards
Build and deploy with InceptionDB on HolaCloud's enterprise platform, designed for security, reliability, and scale.
IoT data ingestion
Build and deploy with InceptionDB on HolaCloud's enterprise platform, designed for security, reliability, and scale.
User profile stores
Build and deploy with InceptionDB on HolaCloud's enterprise platform, designed for security, reliability, and scale.
Ready to get started?
Explore the documentation or launch the console to start building with InceptionDB.
Comments