Database

A real PostgreSQL database, fully managed

Design your schema visually or in raw SQL, run any query, and let KREO handle pooling, backups and isolation. The full power of Postgres without the operations.

  • Visual Table Editor and SQL console
  • DDL, views, indexes and constraints
  • Snapshots with one-click restore
  • pgvector for embeddings & semantic search
schema.sql
-- Create a table from the SQL console
CREATE TABLE customers (
  id         bigserial PRIMARY KEY,
  name       text NOT NULL,
  plan       text DEFAULT 'starter',
  created_at timestamptz DEFAULT now()
);

CREATE INDEX idx_customers_plan ON customers (plan);

SELECT plan, count(*) FROM customers GROUP BY plan;
Postgres 16Latest stable engine
Per-org schemaHard tenant isolation
1-clickSnapshots & restore
Capabilities

Everything included

Table Editor

Create and edit tables, columns and relationships from a clean visual UI — or drop into raw SQL anytime.

SQL console

Run arbitrary SQL against your own schema, confined to your organisation by a dedicated database role.

Snapshots

Capture point-in-time backups before risky migrations and restore in a single click.

Indexes & performance

Add indexes, views and constraints; tuned connection pooling keeps queries fast under load.

Vector search

Store embeddings with pgvector and run similarity search for AI and semantic features.

Realtime hooks

Enable change events per table and stream inserts, updates and deletes to your app.

Spin up your database in seconds

Start free with 50,000 requests per month — no credit card required.