A simple, reliable OTP platform
Send OTPs Instantly via SMS, Voice & Email
Loved by developers. Built for scale.
Skip the hassle of 10DLC, toll-free verification, and carrier compliance. Start sending OTPs in minutes with a simple API — no setup fees, no minimums, just fast, reliable delivery.
import { EasyOTP } from '@easy-otp/sdk';
const client = new EasyOTP({
apiKey: 'YOUR_API_KEY'
});
const result = await client.send({
channel: 'sms',
recipient: '+15551234567',
message: 'Your verification code is: {code}'
});
console.log(result.verification_id);