Sign in to your NextGen dashboard
Don't have an account?
Request access
Enter your email to get a reset link
Scale your business globally with automated identity verification. Confirm authenticity of government IDs from over 190 countries, match biometric selfies, and screen against global watchlists—all in seconds.
Session: idv_7xP9qW
Built to handle the strictest KYC (Know Your Customer) and AML (Anti-Money Laundering) requirements, without causing massive drop-offs in your user onboarding.
Automatically extract and verify data from driver's licenses, passports, and national ID cards from over 190 countries using advanced OCR technology.
Ensure the person holding the ID is actually present. Our biometric checks defeat deepfakes, printed photos, and screen replays in real-time.
Automatically cross-reference users against global sanctions, politically exposed persons (PEPs), and adverse media databases to ensure full compliance.
Create a verification session and NextGen will host a secure, mobile-optimized capture flow. We'll ping your webhooks the moment the verification succeeds or fails.
View API Documentationconst nextgen = require('nextgen')('sk_test_123'); // Create a secure verification session const session = await nextgen.identity.verificationSessions.create({ type: 'document', options: { document: { require_matching_selfie: true, }, }, return_url: 'https://your-site.com/onboarding/complete', }); // Redirect your user to session.url res.redirect(session.url);