Built for reliability and developer speed.
Sub-second dispatch through active WhatsApp sessions.
API key + JWT auth, per-device rate limits, TTL-cleaned OTPs.
Simple JSON REST endpoints. Node example included.
Two API calls — send and verify.
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}}'
})
})Sign up and instantly get your API key.
Scan a QR code to link your number.
One POST call — OTP goes out over WhatsApp.