Global Identity

Verify users anywhere in the world.

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.

Identity Verified

Session: idv_7xP9qW

Document Type Passport (USA)
Biometric Match 99.8% Match
Watchlist Screen Clear

Secure your platform and meet compliance

Built to handle the strictest KYC (Know Your Customer) and AML (Anti-Money Laundering) requirements, without causing massive drop-offs in your user onboarding.

Global ID Parsing

Automatically extract and verify data from driver's licenses, passports, and national ID cards from over 190 countries using advanced OCR technology.

Liveness Detection

Ensure the person holding the ID is actually present. Our biometric checks defeat deepfakes, printed photos, and screen replays in real-time.

Watchlist Screening

Automatically cross-reference users against global sanctions, politically exposed persons (PEPs), and adverse media databases to ensure full compliance.

Verify identities in one API call.

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 Documentation
verification.js
const 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);