Skip to content

Layerbase: 20+ databases
1 platform
0 complexity

Postgres, Redis, ClickHouse, and 18 more, all on one signup. Branch any of them like you branch code, and pay one flat price. No meters. No surprise bills. No card to start.

Free tier with PostgreSQL, MariaDB, SQLite, Redis, Valkey, DuckDB, TypeDB, and LibSQL. No credit card. The other 13 engines start at $5/mo.

Layerbase Cloud/postgresql
Database
PostgreSQLv16.4
Running·us-east-1

Connection

postgresql://layerbase:•••••@postgresql-prod.cloud.layerbase.dev:5432

Scale to zero

On

Storage

256 MB

Plan

Free

01/21
21 Engines
8 Free Engines
0 Docker required
Open Core

Every shape of data.

Relational, document, key-value, vector, time-series, graph, analytical, multi-model, ledger. Filter by category or scan all 21.

The only place to get these serverless.

QuestDB Cloud shut down: ours didn't. Cloudant is a fork: this is the only true self-serve Apache CouchDB. FerretDB Cloud has a waitlist: ours doesn't. And the only self-serve managed TigerBeetle anywhere runs here (Alpha, on Pro). No other cloud puts all 20+ engines side by side.

QuestDB
CouchDB
FerretDB
TigerBeetleAlpha

Four ideas other clouds skipped.

Idle
Idle
Active
Idle
Idle

Always there when you connect.

Free databases sleep when idle and wake on the next connection in a couple of seconds. No pause emails, no expired projects, no wake buttons. Paid plans include an always-on pool you allocate across your databases.

curl https://mydb-rest.cloud.layerbase.dev \
-d '{"sql":"SELECT 1"}'
4.3ms·application/json

Query over HTTPS from anywhere.

Redis and Valkey speak Upstash-compatible REST. MySQL and MariaDB answer the PlanetScale driver. libSQL, Qdrant, Meilisearch, InfluxDB, Weaviate, and CouchDB are HTTP-native. Postgres connects from any serverless runtime over pooled TCP.

$ psql postgresql://duckdb-prod.cloud.layerbase.dev
psql (16.4, server DuckDB 1.1)
analytics=>SELECT * FROM events;
PostgreSQLSQLiteDuckDBQuestDB

psql, for things that aren't Postgres.

Point TablePlus at a DuckDB instance. Run SQLAlchemy against SQLite-as-a-service. The Postgres wire protocol on top of engines that never had network protocols.

Invoice · March#2026-03
Layerbase Cloud$15.00
Total$15.00

One bill. No surprises.

Every plan is a fixed price. We will never charge you for usage: no per-query, no per-request, no end-of-month panic. The free tier covers most dev needs.

Branch your data like you branch your code.

Fork a running database into an instant, isolated copy for a preview deploy, a migration dry-run, or a risky test. Copy-on-write keeps branches near-instant and cheap, and you can reset a branch to its parent any time. On 9 engines, not just Postgres. That includes MongoDB: FerretDB is wire-compatible, and we branch it copy-on-write. Atlas doesn't offer branching at all.

pre-migration-postgres

PostgreSQL

Running
pre-migration-postgres-ruby-flute.cloud...Jun 7, 2026

3 branches

pre-migration-postgres-sisterStopped
pre-migration-postgres-sister-branchStopped
pre-migration-postgres-branchStopped

shop-mysql

MySQL

Running
shop-mysql-amber-koala.cloud...Jun 7, 2026

2 branches

shop-mysql-stagingRunning
shop-mysql-pr-214Stopped

test_fdb

FerretDBMongoDB-compatible

Running
test-fdb-holy-craft.cloud...Jun 7, 2026

1 branch

test_fdb-branchRunning

Available on PostgreSQL, MySQL, MariaDB, Redis, Valkey, FerretDB, LibSQL, SQLite, and DuckDB. Need it on an engine that is not listed? Reach out.

Security isn't an upsell.

Everything below ships on every tier, including free. The one exception: client certificates, a Pro feature.

TLS on every engine

Every database gets a TLS endpoint on every tier, including free. No "encryption is an enterprise feature" asterisk.

IP allowlists on every tier

Restrict connections to the addresses you trust. Included on free, not sold back to you later.

Generated credentials

Strong credentials are generated for you at create time. No default passwords, nothing to rotate on day one.

Per-user network isolation

Each account's databases run in an isolated network namespace. Your neighbors cannot see your traffic, and you cannot see theirs.

We never lose your data

Every destructive action backs up first. If we can't secure a final backup, deletion is refused.

Client-certificate (mTLS) auth

On Pro and Custom, hosted Postgres can require a client certificate AND a password to connect. The big Postgres clouds don't offer inbound client certs.

Why only we offer it
We make databases accessible for everyone, even vibe coders

Already in the training data.

Compatible with @planetscale/database, @upstash/redis, and the SDKs your AI already generates. Change the connection string and ship.

import { Redis } from '@upstash/redis'
const redis = new Redis({
url: 'https://...cloud.layerbase.dev',
})
// Same SDK. New backend.
MITBSDOpen licenses

MongoDB and Redis. Without the license drama.

FerretDB is wire-compatible with MongoDB, MIT-licensed, no SSPL. Valkey is the Linux Foundation fork of Redis, BSD-licensed. Same protocols, none of the legal asterisks. And because FerretDB is a real database underneath, you can branch it: MongoDB branching that Atlas doesn't offer.

FerretDB

Mongo-compatible

MIT licensed

Valkey

Redis-compatible

BSD licensed

Same engine. Laptop to production.

Your localhost Postgres is bit-for-bit your production Postgres. Same applies to every other engine on Layerbase.

01Develop

Run any engine on your laptop.

The free Desktop app runs every engine on your laptop: databases without Docker, no brew install hell. Prefer a terminal? The CLI does everything the app does.

02Preview

Free instant cloud databases.

Stand up a real engine for a feature branch, a demo, or CI. Script it with the layerbase CLI from your terminal, or your agent's.

03Ship

Production. Same engine, all the way through.

An always-on pool, the HTTPS query API, and one flat monthly bill. Same engine you developed against since day one.

TLS, generated credentials, and IP allowlists included on every tier.

Wire it into your deploy pipeline.

Vercel

Connect Vercel and every preview deployment gets its own Postgres branch, created for the PR and reset on merge. Env vars are injected for you.

Read the integration docs
GitHub

Install the GitHub App and your staging branch gets its own database branch, reset from production when a pull request merges to your base branch. No deploy platform required.

Read the integration docs

One-click migrations from the platform you're leaving.

Refugees welcome. Guided migrations from every platform below, or paste any connection string. Every migration is read-once: your source keeps running, is never modified, and its credentials are never stored. Supabase auth users arrive with their bcrypt hashes intact.

Overpaying for a vibe-coding platform? On any paid plan, email support@layerbase.com and we'll help you move your architecture off Replit, Lovable, and friends, onto infrastructure you own.

And if Layerbase ever stops being right for you, we'll help you migrate out or run the same engines yourself. Your data is yours.

See all migration paths

Built-in IDE for every engine. Yes, including yours.

Most clouds give you a SQL textarea and call it a day. We built five purpose-built consoles, one for each data shape.

Query Console
PostgreSQL 18

Tables

  • users
  • events
  • orders
  • sessions
SELECT id, name, created_at
FROM events
WHERE created_at > NOW() - INTERVAL '7 days'
ORDER BY id DESC LIMIT 5;
idnamecreated_at
1247signup2026-03-12 14:21
1246purchase2026-03-12 14:08
1245login2026-03-12 13:55
1244signup2026-03-12 13:44
1243purchase2026-03-12 13:30
5 rows · 12ms

12 dialects, from Postgres SQL to TypeQL. Syntax-highlighted, autocompleted, ready.

The multi-database tax.

A modern app wants Postgres, a cache, vector search, and text search. Priced separately, that is four vendors, four bills, and four different meters.

A typical production stack, priced separately (July 2026)

Postgres on Neon

metered by compute-hours

$35-81/mo

Redis on Upstash

metered per command

$10-20/mo

Vector search on Pinecone

minimum

$50/mo

Text search on Algolia

metered per search - ours is Meilisearch, open source, with a real console

~$85/mo
Four vendors, four bills, four meters~$180-236/mo

On Layerbase

The same four databases are 4 of your 10 on Pro.

$15/mo flat

One bill. Zero meters.

Competitor pricing as of July 2026, from public pricing pages.

Start free. Pay when you scale.

Eight engines free forever - two databases on a single signup, with instant branching. No credit card, no trial, no expiring tokens.

PostgreSQLFree
MariaDBFree
SQLiteFree
DuckDBFree
LibSQLFree
RedisFree
ValkeyFree
TypeDBFree

You won't find a more generous free tier, or paid tier, anywhere. We've looked. Every plan is a flat price: free forever, $5 Solo, $15 Pro, or a Dedicated server from $35/mo: everything Pro has, on your own private VM. Need a region or size we don't list? Custom plans exist too: just ask. We will never charge you for usage. No meters, no overages, no surprise bills, ever.

Security isn't an upsell: TLS, generated credentials, and IP allowlists are included on every tier, including free. And if you ever find a better value somewhere else, tell us. We'll beat it, or help you move there.

Common questions

What is Layerbase?

Layerbase Cloud is the easy way to run a database in production: 21 engines, a free tier with no credit card, flat monthly plans, and optional add-ons (extra always-on pool, team seats). Most teams start here.

Layerbase Desktop gives you the same engines and admin UI on your laptop. Use it as a database IDE, a local-dev runner, or both. Works with any database connection string, not just ones it created.

If you would rather self-host or run locally on the command line, SpinDB is the source-available CLI that powers both of the above, built in the open with a public repo. It installs native binaries, no containers required.

Layerbase Cloud FAQs
Is there really a free tier?

Yes. PostgreSQL, MariaDB, SQLite, DuckDB, libSQL, TypeDB, Valkey, and Redis are free at the base configuration: cloud-hosted, real connection string, HTTPS endpoint. The free tier includes 2 databases, with instant branching on one, on a single signup. MySQL and FerretDB start on Solo ($5/mo); Pro ($15/mo) unlocks every engine plus an always-on pool you allocate across your databases.

How does billing work?

Free needs no credit card. Solo is $5/mo, Pro is $15/mo flat: every engine, 10 databases, a 1.5 GB always-on pool, and the embedded apps (Session Replay, Secret Store). Need a bigger pool? Stack $10 blocks. Dedicated starts at $35/mo per server: everything Pro has, on your own dedicated private VM, with no database or branch caps, the only limits are the server memory and storage. Need a region or size outside the catalog? Custom plans: email us. No usage meters, ever. Billed monthly through Polar.

Why is pricing flat instead of metered?

Different paradigm. Instead of selling compute minutes, Layerbase hosts a complete database platform for you at a flat monthly fee: the economics and control of self-hosting, with the developer experience of a managed cloud. A flat fee means the price is a number, not a formula.

What does Layerbase Cloud replace?

Neon, PlanetScale, Supabase, Railway, Render, Aiven, Upstash, DigitalOcean Managed Databases, Turso, Vercel KV, Algolia (we host Meilisearch, the open-source alternative, with a real console), and MongoDB Atlas (with branching, which Atlas does not offer, via FerretDB). More engines than any single one of them, and a free tier that does not expire.

When should I NOT use Layerbase Cloud?

High availability and multi-region replication are on the roadmap, not shipped. If your workload requires synchronous multi-region writes today, use the upstream cloud for that engine. Everything else (single-region production, dev/staging, side projects) we are ready for.

Layerbase Desktop FAQs
Is it a database runner or a multi-database IDE?

Both. It runs every engine locally (databases without Docker) and doubles as a multi-engine database IDE for any connection string, local or remote. It also carries engines that Layerbase Cloud excludes for licensing reasons: CockroachDB (CSL) and SurrealDB (BSL) run on Desktop.

What does Layerbase Desktop replace?

Your database IDE (TablePlus, DBeaver, DataGrip, pgAdmin, MySQL Workbench, Compass, Navicat, Beekeeper Studio) and your local database runner (DBngin, Postgres.app, XAMPP, MAMP, WAMP, Docker for dev databases). It is a multi-engine database management platform with cloud integration, AI features, and deployment built in. The query editor is a bonus, not the point.

Can I connect to existing databases?

Yes. Layerbase Desktop works with any database connection string, not just databases it created. If the engine is one we support, you can connect to it, whether it is running locally, on another cloud provider, or on bare metal.

Is Layerbase Desktop available offline?

Yes. It works fully offline. The exceptions are AI features (which require a network connection) and the initial authentication when purchasing a plan. After that, everything runs locally.

Start free. Ship today.

One serverless cloud. Every database. Free tier with no card, no trial, no expiring tokens.

Used by technical startup founders, data engineers, vibe coders, and agencies. Teams from $3/member/mo.

Have a database problem? Tell us: support@layerbase.com. We get to know our customers and build the features real users ask for. Custom plans available. A human replies within one business day, usually much faster.

Get the Desktop app: databases without DockerOr self-host with SpinDBRequest a feature