Building SaaS from India has real structural advantages — engineering cost, a large domestic market, and time-zone overlap with both Europe and Asia. It also has specific traps, most of them in billing and compliance rather than in code.

Architecture decisions that are expensive to reverse

Multi-tenancy model

ModelHow it worksCost to runUse when
Shared DB, tenant columnOne database, every row taggedLowestDefault for most SaaS
Schema per tenantSame server, separate schemasModerateStronger isolation needed
Database per tenantFully separate databasesHighEnterprise or regulated clients

The bug that ends SaaS companies: a query that forgets its tenant filter and shows one customer another customer's data. Enforce tenant scoping at the framework or query-builder level so it cannot be omitted by accident — never rely on every developer remembering to add a WHERE clause.

Billing — build it last, design it first

Billing looks simple and is not. Decide these before writing code:

  • Per-user, per-usage, or flat tiers — each implies different data you must track from day one.
  • Monthly and annual pricing, with proration when plans change mid-cycle.
  • What happens on failed payment — grace period, then restrict, then suspend.
  • Trials: card required or not, and what happens at expiry.
  • GST on domestic sales; export-of-services treatment for international.
  • Invoices that satisfy Indian compliance while looking sane to a foreign buyer.

The India-specific parts

  1. Domestic recurring billing needs e-mandate RBI rules mean auto-debit on Indian cards requires registered mandates. This is a real integration, not a checkbox — plan for it if you sell subscriptions in India.
  2. International payments need documentation Foreign inward remittance brings FEMA obligations and paperwork. Talk to your CA before you pick a processor.
  3. Export of services and GST Selling to overseas customers is treated differently from domestic sales. Getting this wrong is tedious to unwind.
  4. Data residency questions will come Enterprise buyers, Indian and foreign, increasingly ask where data lives. Have an answer and be able to change region if needed.

What to build first

Version one

  • The one workflow that delivers your core value
  • Sign-up, login, password reset
  • Tenant isolation done properly
  • One paid plan and one free trial
  • Basic usage analytics
  • A way for you to support customers manually

Not yet

  • Role and permission matrices
  • SSO / SAML
  • Public API and webhooks
  • White-labelling
  • Multiple currencies
  • An elaborate admin dashboard

Every SaaS founder builds SSO too early. Enterprise customers who need it will tell you — and they will wait, because they always do.

Cost structure to plan for

₹8L–25L
MVP build
15–25%
Of build, annually, to maintain
₹5k–50k
Monthly infra, early stage

Infrastructure is usually the smallest of these early on. Founders frequently over-engineer for scale they do not have while under-investing in the support and iteration that actually retains customers.

Operational things that are not optional

  • Backups you have tested restoring. Losing customer data is an extinction event for SaaS.
  • Uptime monitoring with alerts. You must know before your customers do.
  • Error tracking so you see failures users never report.
  • Audit logs — enterprise buyers ask, and they help you debug.
  • A documented incident process, even if the team is three people.
  • Staged deployments so a bad release does not hit every customer at once.

The metrics that actually matter early

Ignore vanity numbers. Watch these:

  • Activation rate — what share of sign-ups reach the moment of value?
  • Week-4 retention — are they still using it a month later?
  • Churn — monthly cancellations, and crucially why.
  • Expansion — are existing customers upgrading?
  • Support load per customer — a leading indicator of product problems.

Planning a SaaS build and want the architecture and billing decisions scoped properly before committing? Talk to us. See also our MVP guide and scaling guide.

Frequently asked questions

A focused SaaS MVP typically costs ₹8,00,000–₹25,00,000 and takes 4–8 months. That covers the core product, authentication, billing, and a basic admin panel. Costs rise sharply with multi-tenancy complexity, integrations, and compliance requirements.
Multi-tenant (shared database with tenant isolation) is the default and is far cheaper to operate at scale. Single-tenant makes sense only when customers demand dedicated infrastructure for compliance reasons, and you should price that accordingly.
Yes, but it requires planning — you need a payment processor supporting international cards, and you must handle FEMA compliance, foreign inward remittance documentation, and GST treatment of export of services. Involve a CA before you build billing, not after.