Super Rapid PIN Authentication
Lightning-fast, secure authentication platform that scales with your business.
SuraPIN = Super Rapid PIN
const SuraPin = require('@surapin/node');
const auth = new SuraPin({
apiKey: 'your-api-key',
region: 'us-east-1'
});
// Generate a new PIN
auth.pins.generate({
userId: 'user123',
length: 6,
expireIn: '5m'
}).then(pin => {
console.log('PIN generated:', pin.id);
});
// Verify PIN
auth.pins.verify({
userId: 'user123',
pin: '123456'
}).then(result => {
if (result.isValid) {
console.log('PIN verified successfully');
}
});
Everything You Need for Authentication
Built for developers, trusted by enterprises
Multi-Factor Authentication
Secure your applications with multiple layers of authentication. Support for SMS, email, and authenticator apps.
Single Sign-On
Streamline user access with SSO support for popular providers. One-click integration with Google, Microsoft, and more.
API-First Design
Built for developers with comprehensive APIs. Easy integration with any tech stack.