A drop-in REST API to deliver verification codes through WhatsApp — higher open rates, global reach, and a fraction of the cost of SMS.
Rate limits, analytics, playground, admin panel — nothing more to build.
Sub-second WhatsApp delivery via always-on sessions.
API-key auth, JWT sessions, TTL-cleaned OTPs, per-device caps.
One POST to signup. One POST to send. Same for every language.
Daily trends, top devices, top recipients — all sales in one view.
Manage customers, adjust balances, monitor every send in real time.
WhatsApp works in 180+ countries. No SIM cards, no carrier fees.
Verify phone at registration with a WhatsApp OTP instead of SMS.
Reinforce logins with a second factor sent to WhatsApp.
Send high-value order or payment confirmations instantly.
Delivery, appointment, or booking reminders via WhatsApp.
Copy-paste ready examples in your favorite language.
await fetch('https://whatsappotp.solvsutra.space/api/messages/send-otp', {
method: 'POST',
headers: {
'x-api-key': process.env.WHATSAPP_API_KEY,
'Content-Type': 'application/json'
},
body: JSON.stringify({
deviceId: process.env.WHATSAPP_DEVICE_ID,
to: '+919876543210',
template: 'Your OTP is {{otp}}'
})
})Admin creates your account.
POST /devices, scan QR.
POST /messages/send-otp.
Analytics in dashboard.