Features
- Simple API - Singleton pattern with easy-to-use methods
- Flexible Integration - Use UniLink URL directly or create sessions via backend
- Responsive - Works on desktop and mobile browsers
- Customizable - Configuration options for styling and behavior
- Multiple Formats - ESM, CommonJS, and UMD builds
- TypeScript Support - Full type definitions included
- Modal & Inline Modes - Choose between modal overlay or inline embedding
- Event Callbacks - Real-time events for verification progress (started, step completed, finished)
- State Management - Observe SDK state for custom UI
Installation
NPM/Yarn
CDN (UMD)
Vanilla JavaScript
ES Modules / TypeScript
Script Tag (UMD)
Framework Examples
SDK Web Examples
React, Angular, Svelte, Next.js, Nuxt, Vue, and more — with examples and documentation for each framework.
Integration Methods
There are two ways to integrate the SDK:Method 1: UniLink URL (Simplest)
Use your workflow’s UniLink URL directly from the Didit Console. No backend required.Method 2: Backend session (recommended for production)
Your backend creates a session via the Didit API and returns the hosted verification URL. This gives you control overvendor_data, per-session callback, metadata, and lets you create sessions before the user reaches the frontend.
Read more in the Create Session API reference.
Backend (Node.js / Express)
The session-create response field is named
url (see the Create Session OpenAPI schema). Pass it directly to startVerification({ url }).Configuration
Embedded Mode
Render verification inline instead of a modal overlay:Verification Results
The SDK returns three types of results:Completed
Verification flow finished (approved, pending, or declined).The TypeScript type declares
'Approved' | 'Pending' | 'Declined', but the value is passed through from the hosted flow’s session status — you can also receive other statuses such as In Review. Pending is the SDK’s fallback when the flow reported no status. Treat status as a hint and rely on the webhook for the canonical decision.Cancelled
User closed the verification modal.session is included when a sessionId was already known (it can be undefined if the user cancelled before the iframe reported one).
Failed
An error occurred during verification.State Management
You can observe the SDK state for custom UI:API Reference
DiditSdk.shared
The singleton SDK instance.Methods
Properties
Callbacks
Granular Events
Track verification progress with theonEvent callback:
Event Reference
Step Values
Thestep field can be one of:
document_selection- Document type selectiondocument_front- Front side of documentdocument_back- Back side of documentface- Face/liveness verificationemail- Email verificationphone- Phone verificationpoa- Proof of addressquestionnaire- Questionnaire step
Channel Values
Thechannel field in code_sent can be:
email- Code sent via emailsms- Code sent via SMSwhatsapp- Code sent via WhatsApp
Code Size
ThecodeSize field in code_sent indicates the OTP code length (e.g., 4 or 6 digits).