Integrate verified human authentication.

Book a Demo

Three steps to go live.

Step 01

Install the SDK.

Add the Entry SDK to your application. Lightweight, no heavy dependencies.

Step 02

Configure your auth flow.

Define when Entry triggers — login, payment, step-up. Map to your existing user model.

Step 03

Go live.

Entry handles liveness, biometric matching, key generation, and audit logging. You get a verified or denied response.

Integration example.

entry-integration.js
import { EntrySDK, EntryApiEnvironment } from '@synapser/entry-web-sdk';

// Initialize once - authenticates the client and fetches config from the Entry API.
const sdk = EntrySDK.getInstance('your-app-name', EntryApiEnvironment.Live);

// Biometrically verify the user before authorizing payment
const container = document.getElementById('entry-container');
const user = await sdk.identifyUser(
  false, // identify only; do not auto-register unknown faces
  container
);

if (user) {
  // User biometrically verified; proceed with transaction
  authorisePayment({ userId: user.entryUserId, amount: 15000, currency: 'ZAR' });
} else {
  // Verification failed; do not proceed
  showVerificationFailed();
}

Enterprise-grade encryption.

All cryptographic operations use AES-256-GCM encryption. Entry has completed the AWS Foundational Technical Review for security, reliability, and operational excellence.

AES-256-GCMAWS FTRiBeta Level 2

Documentation coming soon.

Register to receive the developer documentation and integration guides.

Register Interest