Free Companion ERP bundled with messaging plans Optional

Simplify Education.
Communicate & Manage.

A unified pre-paid wallet for institutional SMS & WhatsApp alerts. Integrate our high-speed messaging APIs directly with your existing software—or activate our optional, fully featured Companion ERP for free.

0%
Delivery Rate
0ms
API Response
0
Messages Sent
EduApp Cloud messaging platform interface
SMS Delivered
Exam reminder sent ✓
WhatsApp Sent
Fee receipt to parent
₹2,450.00
Wallet Balance
Trusted by educational institutions across India

Three steps to
seamless communication

Get started in under 2 minutes. No complex setup, no hidden fees — just powerful messaging at your fingertips.

01
🚀

Create Your Account

Sign up with your institution details. Get instant access to your dashboard with API credentials ready to use.

02
💳

Recharge Your Wallet

Add funds securely via net banking or UPI. Your balance powers every message — no monthly commitments, pay as you go.

03
✉️

Send Messages

Fire SMS or WhatsApp messages from the dashboard or via API. Track delivery in real-time with per-message cost transparency.

Your software or ours.
We simplify both.

Choose the setup that best fits your institution. Keep your existing platform or activate our free bundled ERP.

API-First
🔌

Connect Existing Software

Already have an ERP, school app, or student database? Power it with our unified messaging wallet in minutes using our developer-friendly APIs.

RESTful APIs with PHP, Python, and Node.js SDKs
High-throughput SMS & WhatsApp gateways
Webhooks for instant delivery status updates
Keep your existing data and school workflows intact

Everything you need for
education messaging

A complete communication toolkit designed specifically for schools, colleges, and ed-tech platforms.

SMS — Single Sender ID

All messages go out under one trusted sender identity. Your institution's name appears on every SMS, building brand recognition and trust with parents and students.

📱 From: EDUAPP
Dear Parent, your ward's exam is scheduled for 15th July. Report time: 8:30 AM. — St. Xavier's School
✓✓ Delivered at 10:32 AM

Prepaid Wallet

Recharge once, send anytime. Every message cost is transparently deducted. No bill shock, no monthly subscriptions.

WhatsApp Business

Send rich template messages via a verified WhatsApp Business number with media, buttons, and instant delivery.

Developer API

RESTful API with comprehensive documentation. Send messages from your own ERP, app, or website with simple HTTP calls.

Real-Time Delivery Reports

Track every message from sent to delivered. Get granular analytics on delivery rates, channel performance, and spending trends — all updated in real-time on your dashboard.

98.7%
SMS Delivered
99.2%
WhatsApp Read
1.2s
Avg. Delivery
₹0.18
Avg. Cost/MSG

Message Templates

Pre-approved DLT templates for instant sending. Create, manage, and reuse templates across your team.

Bulk Messaging

Upload CSV files or use groups to send thousands of messages in one go. Schedule campaigns for optimal delivery.

Enterprise Security

Bank-grade encryption, API key rotation, IP whitelisting, and complete audit trails for every action.

Webhooks & Callbacks

Get real-time delivery status updates pushed directly to your server. No polling required.

Transparent, pay-as-you-go pricing

No monthly fees. No long-term contracts. Recharge your wallet and only pay for what you send.

Par Per Use Plan

Validity: Unlimited

500
minimum recharge

Prepaid Wallet Activation Tier

SMS: ₹0.2500/msg
WA Marketing: ₹1.5000/msg
WA Trans: ₹0.5000/msg
WA Auth: ₹0.5000/msg
Companion ERP (not included)
Get Started

Standered Plan

Validity: 12 Months

10,000
minimum recharge

Prepaid Wallet Activation Tier

SMS: ₹0.1500/msg
WA Marketing: ₹1.1900/msg
WA Trans: ₹0.2600/msg
WA Auth: ₹0.2600/msg
Companion ERP (not included)
Get Started

Premium Plan

Validity: Unlimited

50,000
minimum recharge

Prepaid Wallet Activation Tier

SMS: ₹0.1200/msg
WA Marketing: ₹1.1600/msg
WA Trans: ₹0.2400/msg
WA Auth: ₹0.2400/msg
Companion ERP (not included)
Get Started

Pay Per Use & ERP Plan

Validity: Unlimited

50,000
minimum recharge

Prepaid Wallet Activation Tier

SMS: ₹0.2500/msg
WA Marketing: ₹1.5000/msg
WA Trans: ₹0.5000/msg
WA Auth: ₹0.5000/msg
Free Companion ERP included
Get Started

Premium & ERP Plan

Validity: Unlimited

150,000
minimum recharge

Prepaid Wallet Activation Tier

SMS: ₹0.1200/msg
WA Marketing: ₹1.1600/msg
WA Trans: ₹0.2400/msg
WA Auth: ₹0.2400/msg
Free Companion ERP included
Get Started

Custom Enterprise

Custom volume pricing

Custom
volume-based rates

For 50,000+ messages/month

Dedicated API support
Volume discounts
Priority message queue
Contact Sales

Integrate in minutes, not days

A clean, RESTful API that works with any language. Send your first message with just a few lines of code.

Built for developers,
loved by teams

Our API is designed to be developer-first. Simple authentication, predictable responses, and comprehensive error handling — so you can ship faster.

RESTful JSON API with versioning
API Key + Secret authentication
Webhook callbacks for delivery status
SDKs for PHP, Python, Node.js
Rate limiting: 100 requests/minute
Read Full Documentation
# Send an SMS via EduApp.Cloud API

curl -X POST \
  https://api.eduapp.cloud/v1/sms/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "+919876543210",
    "message": "Your exam result is ready. Score: 92/100. Check portal for details.",
    "template_id": "exam_result_01"
  }'

# Response
{
  "status": "queued",
  "message_id": "msg_abc123xyz",
  "cost": "0.18",
  "balance": "2449.82"
}
// Send SMS using PHP (Laravel example)

use EduApp\MessagingClient;

$client = new MessagingClient(
    apiKey: env('EDUAPP_API_KEY'),
    secret: env('EDUAPP_SECRET')
);

$response = $client->sms()->send([
    'to'      => '+919876543210',
    'message' => 'Your exam result is ready.',
    'template_id' => 'exam_result_01',
]);

// $response->messageId = "msg_abc123xyz"
// $response->cost = 0.18
// $response->balance = 2449.82
# Send SMS using Python

from eduapp import EduAppClient

client = EduAppClient(
    api_key="YOUR_API_KEY",
    secret="YOUR_SECRET"
)

response = client.sms.send(
    to="+919876543210",
    message="Your exam result is ready.",
    template_id="exam_result_01"
)

print(response.message_id)  # msg_abc123xyz
print(response.cost)        # 0.18
print(response.balance)     # 2449.82
// Send SMS using Node.js

import { EduAppClient } from '@eduapp/sdk';

const client = new EduAppClient({
  apiKey: process.env.EDUAPP_API_KEY,
  secret: process.env.EDUAPP_SECRET,
});

const response = await client.sms.send({
  to: '+919876543210',
  message: 'Your exam result is ready.',
  templateId: 'exam_result_01',
});

console.log(response.messageId);  // msg_abc123xyz
console.log(response.cost);       // 0.18
console.log(response.balance);    // 2449.82

Loved by educators everywhere

See why institutions trust EduApp.Cloud for their critical communication needs.

"We replaced three different messaging tools with EduApp.Cloud. The unified sender ID and wallet system made our communication so much more professional and trackable."

RK
Dr. Rajesh Kumar
Dean, Prestige Institute of Technology

"The API integration was a breeze. We connected our student management system in a single afternoon and now all fee reminders and exam alerts go out automatically."

PS
Priya Sharma
CTO, LearnStack Ed-Tech

"WhatsApp messages changed the game for us. Parents actually read these — our engagement rate went from 30% with SMS to over 95% with WhatsApp through EduApp."

AM
Ankit Mehta
Principal, DPS International School

Ready to transform your
institutional communication?

Join hundreds of educational institutions already using EduApp.Cloud to connect with students, parents, and staff — reliably and affordably.