Free
$0/month
Perfect for personal projects, prototypes, and getting started.
Start for Freeincluded
- 5 Projects
- 10,000 MAU per project
- 2 GB Database per project
- 5 GB Egress
- 5 GB Cached Egress
- 2 GB File Storage
- Table Editor
- SQL Editor
IndicBase is one infrastructure layer for the whole backend — PostgreSQL, authentication, storage, vector, cron, queues, realtime, APIs, edge functions, and IndicBase AI, sharing a single project context.
Pick a module. Each stage is a working demonstration of how that primitive behaves inside a project — the query paths, the session exchange, the vector neighbourhood, the retries. Interact with them.
select total from orders where user_id = $1db.querycolumns
indexes
relationships
A query leaves your application, passes the project API, reaches PostgreSQL, resolves against a table, and returns. Hover any node to inspect the schema behind it.
Interactive demonstration built from conceptual data. Operational state is reported only in your dashboard, from your own project.
The dashboard, the API, the SDK, and the CLI all resolve the same project. Nothing is a second-class surface, so what you build against locally is what you operate in production.
import { createClient } from "@indicbase/client";
const project = createClient(process.env.INDICBASE_URL, key);
// the same project, from any surface
await project.db.query(sql`select * from orders`);
await project.auth.signIn({ email, password });
await project.storage.upload("project-assets", file);
await project.vector.search({ query, topK: 4 });
await project.queue.publish("default", job);
project.realtime.on("public:orders", applyChange);illustrative usage · see the documentation for the current API
Bring your PostgreSQL foundation across a validated workflow. Every object lands in one of four states — nothing is quietly dropped, and platform-specific behaviour is called out for you to handle.
$0/month
Perfect for personal projects, prototypes, and getting started.
Start for Freeincluded
$19/month
For production applications ready to scale.
Start BuildingEverything in Free, plus:
$149/month
For teams building and scaling production infrastructure.
Start with TeamEverything in Pro, plus:
Custom
For organizations running critical infrastructure at scale.
Contact SalesEverything in Team, plus:
Early access
Request access with your work email. We'll take you to signup with the address filled in — no waitlist that pretends to store data it doesn't keep.
Console
Table Editor, SQL, and RLS are first-class in the IndicBase dashboard. This preview is interactive — tabs, queries, filters, and policies actually switch and update.
customers
4 columns · 3 rowsColumns
| Name | Type | Keys |
|---|---|---|
| id | uuid | PK |
| text | — | |
| name | text | — |
| created_at | timestamptz | — |
Rows
| id | name | created_at | Actions | |
|---|---|---|---|---|
| 7c2f1a44-9b1e-4d3a-8c11-0b6d2e9a1f02 | ananya@example.in | Ananya Rao | 2026-08-12 09:14:00+05:30 | |
| b91c0e77-2d44-4a18-9f60-3c8e1d5b7710 | vikram@example.in | Vikram Shah | 2026-08-14 18:02:00+05:30 | |
| 0e55aa12-6c90-4b2f-b441-88d3c01e4aa8 | meera@example.in | Meera Iyer | 2026-08-16 11:41:00+05:30 |
Page 1 of 1