PostgreSQL Native
Full SQL, transactions, indexes, views, and extensions.Expose tables, views, and RPC via PostgREST for SDK or REST access.
PostgreSQL Native at the core with auto-generated REST APIs and GRANT + RLS for identity and data permissions. JSON documents and visual data models when you need them.
Expose tables, views, and RPC via PostgREST for SDK or REST access.
Identity tokens enter the database context; policies define row-level access.
Subscribe to collection changes for chat, collaboration, and live dashboards.
A database should not be just another ops burden.
It should ship as your app backend with APIs, identity context, and permission boundaries.
Add data, fields, and relationships in a table UI — switch to full SQL anytime.
Add, edit, and inspect business data like a spreadsheet.
Write, run, and save SQL in one place — manage indexes, functions, and RLS policies.
select id, title, status
from public.todos
where owner_id = auth.uid()
order by created_at desc
limit 20;Write tables, views, indexes, functions, and transactions.
const { data: todos } = await db
.from('todos')
.select('id, title, status')
.eq('is_active', true)
.order('created_at', { ascending: false })Business admin with auth, tables, and permission boundaries.
WeChat login, profiles, uploads, and database integration.
Vector search, structured data, and Agents in one environment.
Drive live updates with document DB watch().
Start with your first table and ship APIs, identity, and permissions together.