Face Authentication for Everyone

Secure, private, and easy-to-use 2FA using face recognition. Perfect for websites, apps, door systems, and payments.

👤

Face Recognition

AI-powered biometric authentication

😊

Expression PIN

Your unique signature using expressions

🛡️

Liveness Check

Proves you're a real person

🚪

Door Access

Open doors with your face

📝

Sign Documents

Sign contracts with face verification

💳

Payments

Secure payment verification

How It Works

1

User receives onboarding link

Your service sends an email/SMS with a unique link to verify the user.

2

User trains their face

User records multiple expressions and head movements to create their face profile.

3

User creates Expression PIN

User records their unique signature (e.g., smile, blink, look left).

4

Ready to verify

Now the user can verify themselves on any device with a camera.

VerifyTokens

1 VRFT = 1 Verification

Starter

$10 / 100 tokens
  • 100 verifications
  • Basic support
  • Email notifications
Buy Now

Enterprise

$800 / 10000 tokens
  • 10000 verifications
  • Dedicated support
  • Custom integration
  • Volume discounts
Contact Us

Integrate in Minutes

// 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"
}