flowchart LR
subgraph Individual
W["👤 Worker\n₹5/day self-saving"]
end
subgraph Employment
E1["🏢 Employer\n₹100–500/month"]
G1["🛵 Gig Platform\n₹2–5/task"]
end
subgraph Family
F1["👧 Children\nMonthly support"]
F2["👨👩👧 Relatives\nPooled contributions"]
end
subgraph Community
C1["🏘️ Neighborhood\nAssociation pools"]
C2["🛕 Religious Orgs\nCommunity health funds"]
C3["🤝 Self-Help Groups\nCollective saving"]
end
subgraph Institutional
CSR["🏛️ CSR Programs\nCorporate funds"]
GOV["🇮🇳 Government\nSubsidies & schemes"]
NGO["💚 NGOs\nHealth-focused grants"]
end
W --> HSA["🏦 Health Savings\nAccount"]
E1 --> HSA
G1 --> HSA
F1 --> HSA
F2 --> HSA
C1 --> HSA
C2 --> HSA
C3 --> HSA
CSR --> HSA
GOV --> HSA
NGO --> HSA
style HSA fill:#2780e3,color:#fff,stroke:#1a5fb4,stroke-width:3px
7 Micro-Contributions and Collective Funding
7.1 The Power of Small
There is a quiet revolution hiding in plain sight.
It starts with ₹1.
One rupee. The smallest coin in circulation. The amount you wouldn’t bother to pick up if it fell from your pocket.
And yet — ₹1 per day, from enough people, directed toward the right purpose, can fund healthcare for millions.
This is not wishful arithmetic. It is the logic that built UPI, that powered microfinance, that made mobile recharges universal. India has proven, again and again, that systems designed for small amounts at massive scale can reshape entire sectors.
Aarokya applies that same logic to healthcare.
Healthcare does not need to be funded in large, painful lumps. It can be funded in tiny, painless streams — if the infrastructure exists to collect, pool, and direct those streams.
That infrastructure is what Aarokya builds.
7.2 Contribution as an Act of Caring
Before we discuss APIs and SDKs, let us pause on something deeper.
Every micro-contribution — whether it is ₹2 added per delivery, ₹10 from a tip, ₹50 from a daughter to her mother’s account, or ₹500 from a CSR program — is an act of caring.
It says: I see you. Your health matters. I am adding to your safety.
This is not transactional. It is relational.
The delivery customer who directs ₹5 of their tip into the driver’s HSA is not paying a fee. They are participating in a fabric of mutual support. The employer who sets up a ₹100/month auto-contribution is not filing a compliance form. They are telling their workers: your wellbeing is part of why we exist.
When contributions are tiny and frequent, they stop feeling like sacrifice. They become habits. They become culture. They become the way things work.
A society is measured not by the size of its grand gestures, but by the steadiness of its small ones.
7.3 The Taxonomy of Micro-Contributions
Micro-contributions come in many forms. The Aarokya system is designed to accept them all:
| Contribution Type | Example | Typical Amount | Frequency |
|---|---|---|---|
| Self-saving | Worker sets aside daily amount | ₹5–₹20 | Daily |
| Employer contribution | Salary-linked auto-deduction | ₹100–₹500 | Monthly |
| Family support | Daughter funds mother’s HSA | ₹50–₹200 | Monthly |
| Platform per-task | ₹2 added per ride/delivery | ₹2–₹5 | Per task |
| Customer tip | Directed portion of gratuity | ₹5–₹50 | Per transaction |
| CSR allocation | Corporate program for worker pool | ₹200–₹1,000 | Quarterly |
| Community pool | Neighborhood or association fund | ₹25–₹100 | Monthly |
| Festival/occasion | Gift directed to health account | ₹100–₹500 | Occasional |
| Government scheme | Public subsidy or matching grant | Varies | Periodic |
The power is not in any single type. The power is in composability — many types, from many sources, flowing into one account, accumulating over time.
7.4 The Math of Micro
Let skepticism meet arithmetic.
Consider a domestic worker — a house helper who works across three households, with an employer on one gig platform, and has a daughter who contributes monthly:
| Source | Amount | Frequency | Monthly | Annual |
|---|---|---|---|---|
| Self (daily saving) | ₹5/day | Daily | ₹150 | ₹1,825 |
| Household 1 | ₹75/month | Monthly | ₹75 | ₹900 |
| Household 2 | ₹75/month | Monthly | ₹75 | ₹900 |
| Household 3 | ₹50/month | Monthly | ₹50 | ₹600 |
| Platform employer | ₹100/month | Monthly | ₹100 | ₹1,200 |
| Daughter | ₹100/month | Monthly | ₹100 | ₹1,200 |
| CSR matching fund | ₹250/quarter | Quarterly | ₹83 | ₹1,000 |
| Community association | ₹25/month | Monthly | ₹25 | ₹300 |
| Total | ₹658 | ₹7,925 |
₹7,925 per year. From sources that individually feel almost invisible.
Now multiply this across 200 million gig workers. Even at modest penetration and lower averages, the aggregate healthcare funding pool is staggering.
Micro-contributions are not charity. They are distributed, structured, ongoing funding from the ecosystem of people already connected to a worker’s life. The employer pays because the worker’s health affects service quality. The family pays because they care. The platform pays because retention matters. The community pays because neighbors matter.
Everyone has a reason. The HSA gives them a channel.
7.5 The Ecosystem of Contributors
7.6 Technical Infrastructure: API-First, SDK-Embeddable
For micro-contributions to work at India’s scale, the plumbing must be invisible and universal.
Aarokya’s contribution infrastructure is built on three principles:
API-First
Every contribution type — self-saving, employer deduction, platform per-task, customer tip, CSR allocation — is a standard API call. Any system that can make an HTTP request can direct funds into an HSA.
POST /api/v1/contributions
{
"recipient_abha_id": "12-3456-7890-1234",
"amount": 200,
"currency": "INR",
"source_type": "employer_monthly",
"source_id": "employer_xyz_123",
"metadata": { "month": "2026-03" }
}
SDK-Embeddable
For platforms that want deeper integration, Aarokya provides SDKs — lightweight libraries that can be embedded into existing apps. A ride-hailing platform, a food delivery app, a household services marketplace — any of them can integrate Aarokya’s contribution flow with minimal engineering effort.
Platform Integration Model
Imagine the Aarokya SDK embedded in the major platforms that gig workers use every day:
- Ride-hailing apps (Ola, Uber): ₹2 auto-contributed per completed ride to the driver’s HSA
- Food delivery apps (Swiggy, Zomato): ₹2 per delivery, plus an option for customers to add a health tip
- Household services (UrbanCompany): Per-task health contribution built into service pricing
- Domestic employment platforms: Monthly auto-deduction from employer, matched by platform
- Payment apps: “Contribute to Health” option when sending money to service workers
Each integration is a few lines of SDK code. The infrastructure handles routing, accounting, and compliance.
7.7 Family Contributions: The Bonds of Care
Some of the most meaningful contributions will come from families.
India’s family structures are deeply interconnected. Children support parents. Siblings support each other. Extended families pool resources in times of need.
Aarokya makes this natural impulse structured and digital.
A daughter working in Bangalore can set up a monthly ₹200 auto-contribution to her mother’s HSA in a village in Tamil Nadu. She doesn’t need to send cash through informal channels and hope it gets used for health. She can see the balance growing. She can see the insurance eligibility progressing. She can see that her contribution is working.
A family WhatsApp group can coordinate: “Let’s all contribute ₹100/month to Amma’s health account.” Four siblings, ₹400/month, ₹4,800/year — meaningful protection for an elderly parent, built from love and structure.
7.8 Community Pooling: Collective Strength
India has deep traditions of community pooling — chit funds, community associations, religious organizations, self-help groups.
Aarokya respects and digitizes these traditions.
A neighborhood association can create a health pool: every family contributes ₹50/month. The pool supports members who face health emergencies, funds community health camps, or subsidizes insurance premiums for the most vulnerable households.
A self-help group of women can decide: “₹25/month from each of us goes into our collective health fund.” Twelve women, ₹300/month, ₹3,600/year — enough to cover basic health needs for the group.
Religious organizations — temples, mosques, gurudwaras, churches — can direct a portion of community funds into health accounts for their most vulnerable members.
These are not new behaviors. They are existing behaviors given digital rails.
7.9 CSR Flows: Corporate India’s Health Contribution
India’s CSR mandate requires large companies to spend 2% of profits on social causes. Health is one of the most common categories.
But CSR spending on health is often disconnected from the people who need it most. It funds hospitals in cities, awareness campaigns that reach the already aware, and programs that end when the funding cycle ends.
Aarokya offers a better channel.
Companies can direct CSR funds into health savings accounts for specific worker populations — their own contract workers, gig workers in their supply chain, communities near their operations.
The contribution is traceable, purpose-constrained, and cumulative. It doesn’t end when a program cycle ends — it sits in the worker’s HSA, growing, compounding with contributions from other sources.
A logistics company with 50,000 delivery partners could contribute ₹500/quarter per worker through Aarokya. That’s ₹2,000/year per worker — multiplied across the workforce, it’s ₹100 crore directed to the healthcare of people who actually need it. Every rupee traceable. Every rupee constrained for health.
7.10 The Composable Benefits Model
The deeper architectural insight is this: benefits in the Aarokya system are composable.
They are not monolithic packages tied to a single employer or a single policy. They are building blocks — portable, API-driven, SDK-embeddable — that can be assembled from multiple sources for each individual.
This is a fundamental departure from how benefits work today:
| Traditional Benefits | Composable Benefits (Aarokya) |
|---|---|
| Tied to single employer | Portable across jobs and platforms |
| All-or-nothing coverage | Incremental, growing coverage |
| Lost when employment changes | Persistent in personal HSA |
| Employer-funded only | Multi-source funded |
| Paper-based, opaque | Digital, transparent, real-time |
| One-size-fits-all | Personalized to contribution patterns |
This composability is what makes Aarokya suitable for the modern Indian economy — where a person might work three gig jobs, receive support from family, benefit from a CSR program, and save on their own, all simultaneously.
7.11 A National Fabric of Tiny Acts
Step back and see the full picture.
Millions of workers saving ₹5/day. Millions of employers contributing ₹100/month. Millions of families sending ₹50 to their loved ones. Thousands of platforms auto-contributing ₹2/task. Thousands of companies directing CSR into health accounts. Thousands of communities pooling for their neighbors.
Each individual thread is thin. Almost invisible.
But woven together, they create a national fabric of healthcare support — strong, distributed, resilient, and deeply human.
This is not a government program. It is not a corporate benefit. It is not a charity initiative.
It is all of these and none of these.
It is something new: a collectively funded, digitally organized, individually owned healthcare safety net.
Millions of tiny acts of support, structured by technology, sustained by empathy, becoming — together — a system that protects everyone.
That is the vision of micro-contributions. That is what Aarokya makes possible.