2026-05-24•Identity Infrastructure•1 min read
Rebuilding Facial Authentication SDK for Indian Startups
Ishu Prabhakar
Founder & Lead Engineer
The KYC Authentication Latency Barrier
In Indian fintech sectors, quick onboarding KYC verification is crucial. Heavy facial recognition libraries cause browser-side timeouts and user drops on lower-end devices.
Engineering A Light Liveness Check
By compiling our custom facial landmark extraction module into a highly optimized WASM package and utilizing local hardware acceleration, we dropped payload sizes down to 840KB and enabled dynamic client-side liveness checks.
import { FacialIdentitySDK } from '@deepskylabs/facial-identity-sdk';
const sdk = new FacialIdentitySDK({
apiKey: "ds_live_8931289a",
detectionMode: "liveness-active"
});
sdk.onFaceVerified((result) => {
console.log("Onboard verification payload:", result.authToken);
});
Related Engineering Logs
2026-08-03 • 4 min read
How We Built WinIsland: Bringing Dynamic Island Overlay HUDs to Windows
A technical dive into building a top-of-screen floating overlay in Flutter Desktop, handling native Win32 media events, and decoupling UI isolates.
2026-07-22 • 5 min read
How We Built WinSearch: A Spotlight-Style Launcher for Windows using Flutter & C#
A technical deep dive into named-pipe IPC, Riverpod state management without codegen, and building an instant keyboard-driven launcher for Windows.