PostgreSQL with superpowers
Full PostgreSQL with instant REST APIs, a visual schema explorer, migrations, and row-level security. No ORM required — use SQL or our query builder.
// Query with filters
const { data } = await zm.db
.from('products')
.select('id, name, price, category')
.where({ category: 'electronics', active: true })
.orderBy('price', 'desc')
.limit(20)
// Insert a record
await zm.db.from('orders').insert({
product_id: 'prod_123',
quantity: 2,
total: 599.98
})
// Raw SQL for complex queries
const results = await zm.db.sql(`
SELECT c.name, COUNT(o.id) as order_count
FROM customers c
JOIN orders o ON c.id = o.customer_id
GROUP BY c.name
ORDER BY order_count DESC
`)Everything you need from a database
Production-ready PostgreSQL with tools that make development fast and deployment confident.
Schema Explorer
Visual table editor with column types, constraints, indexes, and foreign keys. Create and modify tables without writing DDL.
SQL Editor
Full-featured SQL editor in the dashboard. Write queries, see results, export data. Syntax highlighting and auto-complete.
Instant REST API
Every table gets auto-generated REST endpoints. CRUD operations, filtering, pagination, and sorting out of the box.
Row-Level Security
Fine-grained access control at the row level. Define policies per table, per operation, per user role.
Migrations
Version-controlled schema migrations. Generate migrations from schema changes, apply them in order, rollback when needed.
Connection Pooling
Built-in connection pooling. Handle thousands of concurrent connections without overloading your database.
From zero to production database
Three steps to a fully managed PostgreSQL database with auto-generated APIs.
Design your schema
Use the visual Schema Explorer to create tables, define columns, set constraints, and establish relationships — no SQL required.
Auto-generate APIs
Every table instantly gets REST endpoints, filtering, pagination, and sorting. Row-level security policies protect your data automatically.
Query with SDK or SQL
Use our typed SDK, the built-in query builder, or raw SQL. Instant results with connection pooling that handles thousands of concurrent requests.
Write SQL, see results instantly
Full SQL editor with syntax highlighting, auto-complete, and instant results. Export data, save queries, share with your team.
Live database metrics
Monitor queries per second, active connections, row counts, and query performance in real-time. Every query is logged with execution time.
Start building with PostgreSQL
Free tier includes 500 MB database per project. No credit card required.