Skip to content

Serverless CouchDB

Document storage with the HTTP API you already know, multi-master replication, and the same client libraries you've always used. Cloud or self-host.

REST API Console
CouchDB
POST/products/_find

Body

{
"selector": { "in_stock": true },
"limit": 5
}

Response200 OK · 7ms

{
"docs": [
{ "_id": "412", "name": "ANC Headphones" },
{ "_id": "287", "name": "Studio Earbuds" }
]
}

Branching, on request

Database branching is live on 9 engines today, and the same copy-on-write mechanism spans the whole fleet. Want it on CouchDB? Reach out and we will look at switching it on for your account.

Request branching

Production features, free tier included

Every CouchDB database ships with the same primitives: TLS, web console, hibernation, and a real dashboard. No tiered features hidden behind a sales call.

Web IDE

Query console in the dashboard, no extra client to install.

Included

TLS by default

All connections encrypted. No setup required.

Included

Always-on connections

Pin a database to your always-on pool to prevent hibernation.

Included

Scale to zero

Hibernates when idle. Wakes on the next connection.

Included

Connection pooling

Pooled endpoint for serverless and edge workloads.

Not available

Direct connections

Bypass the pooler for migrations and replication.

Included

Native HTTPS endpoint

Engines whose own wire protocol speaks HTTPS. Every database, including this one, is also queryable over the platform's HTTPS query API and web console.

Included

Serverless driver

Drop-in HTTP driver for edge runtimes (Upstash REST, PlanetScale, or the engine-native client).

Not available

IP whitelisting

Restrict access to specific IPs or CIDR ranges.

Included

Automatic backups

Scheduled dumps and volume snapshots with one-click restore on paid plans. Free tier includes a manual backup slot.

Included

Predictable pricing, no cloud setup

CouchDB on Layerbase Cloud is priced the same way as every other engine: a flat monthly plan with nothing metered behind it.

A fixed monthly price

Plans are flat: Free at $0, then $5/mo Solo and $15/mo Pro. No per-hour compute meter, no per-database line items, and no bill that changes shape when your traffic does.

No bandwidth charges

Reads and writes are not metered. There are no ingress or egress fees, so moving data in and out of your database never adds to the bill.

No cloud account to wire up

You do not need an AWS, GCP, or Azure account. Sign up, create a database, and connect. Layerbase runs the infrastructure, so there is no cloud provider to configure or pay separately.

Hosted CouchDB, compared

There is no other self-serve managed Apache CouchDB anywhere. IBM Cloudant is a CouchDB-derived fork, and the remaining CouchDB hosting options are quote-only. Layerbase runs real Apache CouchDB, self-serve, on the Pro plan at $15/mo flat.

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

Connect with any CouchDB client

Offline-first apps that sync via PouchDB, multi-master document workloads, and apps that prefer HTTP-native storage.

  • Sync state between mobile and desktop apps via PouchDB to a hosted CouchDB
  • HTTP-native document storage for serverless and edge runtimes
  • Self-host with SpinDB when on-premise replication is required
  • Local-first apps that bring their CouchDB to the cloud without code changes
  • Long-running document workloads with periodic compaction
Full CouchDB connection guide
bash
CouchDB
curl "https://admin:password@your-host.cloud.layerbase.dev/"

More on CouchDB

All articles

Common CouchDB questions

Will PouchDB sync to hosted CouchDB?

Yes. The endpoint speaks the standard CouchDB HTTP API, so PouchDB syncs to it without configuration changes other than the URL.

TLS and authentication?

HTTPS by default. The dashboard manages admin credentials and provides per-database keys for app-level auth.

Can I use Fauxton?

Yes for direct administration via the REST API. The Layerbase dashboard provides a console for everyday use; Fauxton-style operations work against the same endpoint.

Replication?

CouchDB replication targets the standard /_replicate API. Configure source and target URLs through the dashboard or your tooling.

Can I run CouchDB locally?

Yes. SpinDB and Layerbase Desktop both manage local CouchDB versions with the same UI.