Open-source · file-based · zero config

The JSON database
for builders.

Spin up a fully-featured REST database in seconds. Multi-database isolation, API-key auth, search, pagination, backups and a beautiful admin console — all backed by plain JSON files.

terminal
# Create a record — no schema, no migrations
curl -X POST https://your-host/api/shop/products \
  -H "X-API-Key: pk_8f2c…" \
  -H "Content-Type: application/json" \
  -d '{ "name": "Keyboard", "price": 129 }'

← 201 Created
{ "id": "a3f…", "name": "Keyboard", "price": 129, "createdAt": "…" }
Databases
REST
Instant API
0
Config files
2FA
Email-secured

Everything included

Built for rapid prototyping

A production-grade developer experience without standing up Postgres. Perfect for MVPs, demos, mock backends and internal tools.

Multi-database

Create isolated databases on the fly — each with its own tables, data and dedicated API key.

Instant REST API

Full CRUD with filtering, full-text search, sorting and pagination — generated automatically.

Secure by default

Per-database API keys, JWT admin auth, CORS allow-lists and email two-factor verification.

Import & export

Bulk-import JSON, export tables, and download full schema + data as Standard SQL, MySQL or SQL Server.

Backups & restore

Snapshot any database to the server and restore into the same or a brand-new database in a click.

Beautiful console

Manage databases, tables, records, keys and users from a fast, modern, mobile-ready admin UI.

Developer experience

A REST API you already know

GET/api/:db/:table
GET/api/:db/:table/:id
POST/api/:db/:table
PUT/api/:db/:table/:id
DEL/api/:db/:table/:id
query.sh
# Search, sort & paginate
GET /api/shop/products?q=key&_sort=price&_page=1

{
  "data": [ … ],
  "meta": { "total": 42, "page": 1, "totalPages": 3 }
}

Three steps

From zero to API in a minute

01

Create a database

Open the console and spin up an isolated JSON database — no schema required.

02

Grab your API key

Each database gets a unique key. Add allowed CORS origins to lock it down.

03

Build

Point your frontend at the REST endpoints and start shipping immediately.

Ready to build something?

Jump into the admin console and create your first database.

Open the Admin Console →