Secure, private, and easy-to-use 2FA using face recognition. Perfect for websites, apps, door systems, and payments.
AI-powered biometric authentication
Your unique signature using expressions
Proves you're a real person
Open doors with your face
Sign contracts with face verification
Secure payment verification
Your service sends an email/SMS with a unique link to verify the user.
User records multiple expressions and head movements to create their face profile.
User records their unique signature (e.g., smile, blink, look left).
Now the user can verify themselves on any device with a camera.
1 VRFT = 1 Verification
// Request verification
const result = await fetch('https://imyself.me/api/verify/request', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
apiKey: 'lk_xxxxxxxxxxxx',
type: 'full', // identify | liveness | expression_pin | full
callbackUrl: 'https://yoursite.com/webhook'
})
});
// Then redirect user to:
// https://imyself.me/?request=xxx
// Webhook receives:
{
"verified": true,
"userId": "A1B2C3D4",
"method": "face+liveness+expression",
"timestamp": "2026-02-21T12:00:00Z"
}