Just POST your JSON. NexusDB detects the structure, creates the collection, evolves the schema, and stores the data — all in milliseconds.
// One call to store any data
const db = new NexusDBClient("YOUR_API_KEY");
await db.collection("orders").insert({
product: "AI Prompt Pack",
price: 29.99,
buyer: "[email protected]",
status: "paid"
});
// Schema auto-created. Query instantly:
const results = await db.collection("orders").find(
{ price: { $gt: 10 }, status: "paid" },
{ limit: 20, sort: "-created_at" }
);No ORM setup, no schema migrations, no database management. Just a clean API that stores and retrieves your data.
Push any JSON payload. Collections are created and schemas updated automatically — no migrations required.
Use $gt, $lt, $in, $regex and more operators to filter records with a familiar query syntax.
Full-featured REST API and a GraphQL endpoint for flexible data access patterns.
Instantly copy ready-to-use SDK code for Node.js, Python, and PHP.
Per-project API keys with built-in rate limiting at 100 req/min. Keep your data secure.
Every API request is logged with status, latency, and IP. Debug issues in real-time.
/api/v1/recordCreate a record (auto-creates collection)/api/v1/recordQuery records with filters + pagination/api/v1/record/:idUpdate a record by ID/api/v1/record/:idDelete a record by ID/api/graphqlGraphQL mutations and queries/api/exportExport collection as JSON or CSVStart free. Scale as you grow.