NIST #1 Fingerprint · Top 10 Face · Cloud · Edge · On-Device

Biometrics
everywhere you build

Cloud API. Edge container. On-device SDK. Same NIST #1 algorithms — from a five‑line API call to a drone running offline at 30 FPS.

// npm install @innovatrics/sdk
import Innovatrics from '@innovatrics/sdk'
const client = new Innovatrics ( 'ink_live_xxxxxxxxxx' )
const result = await client. verify ({
selfie: './selfie.jpg' ,
document: './passport.jpg' ,
checks: [ 'liveness' , 'face_match' , 'document_ocr' ]
})
// => { match: true, confidence: 0.97, liveness: "live" }

Deployed in production

80+ Countries · 600+ Projects · 1B+ People Impacted · Cloud & Edge & On‑Device

Products

One engine. Cloud to edge to device.

Same NIST #1 algorithms everywhere — a 5‑line API call, a Docker container on a drone, or a firmware library on a smart lock.

Cloud API
npm install · pip install
Edge & Server
docker pull · k8s helm
On-Device SDK
iOS · Android · Flutter
Embedded & OEM
C/C++ lib · firmware
DOT

Identity Verification

DOT · Cloud API

Remote KYC in one API call. Selfie + document = verified identity with liveness, deepfake detection, OCR, and face matching.

Passive liveness
Deepfake detection
Document OCR + NFC
5,000+ doc types
SmartFace

SmartFace

Edge / On-Premise

Real-time face recognition from camera streams. Docker pull, point at cameras, done. Your data never leaves your infrastructure.

Multi-stream processing
Docker / Kubernetes
NVIDIA Jetson native
Works fully offline
OEM Solution

Embedded & OEM Toolkit

On-Device / Firmware

Biometric algorithms as native libraries. Link into your firmware, ship on your hardware. Drones, smart locks, kiosks, automotive.

C/C++ native libraries
ARM64 / x86 / RISC-V
<50 MB footprint
OEM royalty licensing
ABIS

ABIS

Government / Nation-Scale

Automated Biometric Identification System. Elections, border control, national ID. Face + fingerprint + iris across millions of records.

Face + fingerprint + iris
180M+ records proven
Kubernetes orchestrated
Sovereign deployment

Get Started

Pick your path. Ship in minutes.

Cloud API for web/backend. Edge container for on-prem. Device SDK for embedded. All free to start.

1

Install the SDK

Terminal
$ npm install @innovatrics/sdk
pip install innovatrics go get innovatrics.com/sdk dotnet add Innovatrics.SDK
2

Add your API key

.env
INNOVATRICS_API_KEY = ink_live_xxxxxxxxxxxxxxxxxx

Free tier: 100 verifications/month. No credit card required.

3

Verify an identity

verify.ts
import Innovatrics from '@innovatrics/sdk'
const ink = new Innovatrics() // reads INNOVATRICS_API_KEY from env
const { match, confidence, liveness, document } = await ink.verify({
selfie: selfieBuffer,
document: passportBuffer,
})

Identity verified. Ship it.

{
"match": true,
"confidence": 0.97,
"liveness": "live",
"document": { "name": "Jan Novak", "country": "SVK" }
}

API Reference

REST API built for humans

Predictable resource-oriented URLs, JSON everywhere, meaningful HTTP status codes. Feels like Stripe.

POST /v1/verify

Full identity verification in one call. Selfie + document = result.

POST /v1/liveness

Standalone liveness check. Passive (single image) or active (challenge).

POST /v1/face/match

Compare two face images. Returns similarity score and match decision.

POST /v1/document/scan

Extract data from identity document. OCR, MRZ, NFC chip reading.

POST /v1/face/detect

Detect faces in image. Returns bounding boxes, landmarks, quality score.

GET /v1/sessions/:id

Retrieve verification session. Full audit trail and result history.

POST /v1/age/estimate

Estimate age from face image. For age-gated content and services.

POST /v1/palm/match

Palm recognition for contactless authentication. Liveness included.

POST /v1/verify
200 OK · 1.2s
Request
curl -X POST https://api.innovatrics.com/v1/verify \
-H "Authorization: Bearer ink_live_xxx" \
-F "selfie=@selfie.jpg" \
-F "document=@passport.jpg" \
-F 'checks=["liveness","face_match","document_ocr"]'
Response
{
"id": "ses_8f3k2j1...",
"status": "completed",
"match": true,
"confidence": 0.97,
"liveness": {
"status": "live",
"score": 0.99,
"deepfake": false
},
"document": {
"type": "passport",
"country": "SVK",
"fields": {
"full_name": "Jan Novak",
"date_of_birth": "1990-03-15",
"document_number": "EA123456",
"expiry_date": "2029-06-20"
},
"authentic": true
},
"created_at": "2026-03-03T14:22:01Z"
}

Platforms & Hardware

Runs where your product runs

Same algorithms, optimized for every platform. From a Raspberry Pi to a GPU cluster. Download the right build, integrate, ship.

GPU

NVIDIA Jetson

Orin Nano · Orin NX · AGX Orin

Purpose-built containers with CUDA acceleration. 30+ FPS face recognition on Orin Nano. Perfect for drones, robots, edge boxes.

Docker JetPack 6 TensorRT
ARM

ARM Single-Board

Raspberry Pi · Rock · Orange Pi

Lightweight native libraries. Face detection + matching under 200 MB RAM. Kiosks, access panels, vending machines, IoT devices.

Native C ARM64 Linux
CAM

Smart Cameras

Ambarella · Blaize · ONVIF

On-camera face recognition. Process video at the source, send only metadata. Cuts bandwidth 100x. Surveillance, retail, traffic.

Firmware RTSP MQTT
SRV

Server / GPU Cluster

Linux x86 · NVIDIA GPU · Kubernetes

Docker + Helm charts for production. Auto-scale with demand. Process hundreds of camera streams or millions of verifications/day.

Docker K8s Helm CUDA
MOB

Mobile

iOS 15+ · Android API 24+ · Flutter

Native SDKs with auto-capture UI. Face + document + liveness + NFC on-device. Ship in your banking, onboarding, or security app.

Swift Kotlin Flutter RN
IND

Automotive & Industrial

RISC-V · Custom SoC · QNX · RTOS

Bare-metal and RTOS-compatible libraries. Driver authentication, keyless entry, industrial access. Certified for automotive-grade silicon.

C/C++ RTOS OEM

Performance by platform

Platform Face Detect Face Match Memory Use Case
GPU Server (A100) <5 ms <2 ms 2 GB Cloud API, ABIS
Jetson Orin NX <15 ms <5 ms 512 MB Drones, edge boxes
Jetson Orin Nano <33 ms <10 ms 256 MB Robots, kiosks
Raspberry Pi 5 <80 ms <30 ms 128 MB Access panels, IoT
iPhone 15 <20 ms <8 ms 45 MB Banking, onboarding
Smart Camera <50 ms <20 ms 64 MB Surveillance, retail

Benchmarks are indicative. Actual performance depends on image resolution, model configuration, and concurrent workload.

SDKs & Libraries

Your stack, your platform, our biometrics

Cloud SDKs from package managers. Edge containers from Docker Hub. Device libraries from our toolkit.

Cloud API SDKs — npm install / pip install

JS

Node.js

v3.2.0

npm i @innovatrics/sdk
Py

Python

v3.2.0

pip install innovatrics
Go

Go

v3.2.0

go get innovatrics.com/sdk
.N

.NET / Java

v3.2.0

dotnet add Innovatrics.SDK

Edge Containers — docker pull / helm install

x86

SmartFace (GPU)

Linux x86 + CUDA

docker pull innovatrics/smartface
JET

SmartFace (Jetson)

Orin Nano / NX / AGX

docker pull innovatrics/smartface:jetson
ARM

SmartFace (ARM64)

RPi / Rock / generic

docker pull innovatrics/smartface:arm64
K8s

Helm Chart

Kubernetes cluster

helm install innovatrics/smartface

Device & Embedded SDKs — native libraries, runs offline

Sw

iOS (Swift)

Face, Document, NFC, Palm

pod 'InnovatricsDOT'
Kt

Android (Kotlin)

Face, Document, NFC, Palm

com.innovatrics:dot-face
Fl

Flutter

Cross-platform

flutter pub add innovatrics_dot
C

C/C++ Native

ARM64, x86, RISC-V

innovatrics-toolkit.tar.gz

Web Capture Components — drop-in UI for browsers

WC

Face Auto Capture

+ MagnifEye Liveness

npm i @innovatrics/dot-face-auto-capture
WC

Document Auto Capture

ID card, passport, DL

npm i @innovatrics/dot-document-auto-capture
WC

Palm Capture

Contactless palm recognition

npm i @innovatrics/dot-palm-capture
OA

OpenAPI Spec

Generate any SDK

openapi.innovatrics.com/v3.2
CLI | Test from your terminal. Cloud or local.
$ npx @innovatrics/cli login
Authenticated as jozo@example.com
$ npx @innovatrics/cli verify --selfie selfie.jpg --document passport.jpg
MATCH confidence=0.97 liveness=live deepfake=false
$ npx @innovatrics/cli edge status
jetson-01 online smartface:3.2.0 3 cameras 30 FPS license: valid
rpi-door online face-detect:3.2 1 camera 12 FPS license: valid

Use Cases

Built for what you're building

Copy-paste guides. From fintech onboarding to autonomous drones. Cloud or edge.

📱 Cloud API

KYC Onboarding

Add identity verification to your signup flow. Selfie + document, liveness check, instant result. React, Next.js, React Native guides.

15 min guide →
🚁 Edge / Jetson

Drone & Robotics Vision

Face recognition on NVIDIA Jetson. 30+ FPS, fully offline. Person identification for autonomous systems, search & rescue, security patrols.

Edge deploy guide →
🏢 Edge + Device

Smart Building Access

Face or palm at every door. SmartFace on a Raspberry Pi or Jetson. Integrates with existing badge and VMS systems. Works offline if network drops.

Deploy guide →
🍺 Cloud API

Age Verification

Verify age from a document or estimate from a face. For alcohol delivery, gambling, adult content, vending machines. One API call.

5 min guide →
🚗 Embedded / OEM

Automotive & Keyless Entry

Driver authentication, keyless entry via face or palm. C/C++ libraries certified for automotive-grade SoCs. <50 ms latency, works in all lighting.

OEM integration guide →
🤖 Cloud + Edge

AI Deepfake Detection

Detect AI-generated faces, video injections, and synthetic identities. Critical for the AI era. Protect onboarding, video calls, and content platforms.

Integration guide →
🔒 On-Device

Biometric Login

Replace passwords with faces or palms. On-device matching = maximum privacy. Works offline. SDKs for iOS, Android, Flutter, React Native.

10 min guide →
🛒 Edge

Retail & POS

Pay with your face. VIP recognition. Loss prevention. Smart camera analytics at the edge. Process locally, zero cloud dependency.

Edge deploy guide →
🗳 Sovereign

Elections & Border Control

Voter deduplication across millions. Automated passport gates. 1:N identification at national scale. Face + fingerprint + iris. 80+ countries trust Innovatrics.

Contact solutions team →

Pricing

Start free. Scale anywhere.

Cloud API by the call. Edge by the device. Both start free for development.

Sandbox

Explore and prototype

$0

forever

  • 100 verifications / month
  • All API endpoints
  • Liveness + face match
  • Document OCR (10 types)
  • Community support
  • Watermarked responses
Get API Key
Most Popular

Growth

Production apps

$0.12

per verification

  • Unlimited verifications
  • Liveness + deepfake guard
  • Document OCR (all types)
  • Webhooks
  • Email support (24h SLA)
  • Dashboard & analytics
Start Building

Pro

Compliance-ready

$0.08

per verification (volume)

  • Everything in Growth
  • NFC chip verification
  • Age estimation
  • Audit logs & compliance
  • Dedicated support (4h SLA)
  • Data residency options
Contact Sales

Sovereign

Government & nation-scale

Custom

annual contract

  • Everything in Pro
  • On-premise deployment
  • ABIS (face+finger+iris)
  • SmartFace video platform
  • 99.99% SLA + on-site support
  • Dedicated solution architect
Talk to an Expert

Need both cloud and edge? Most customers mix. Use the Cloud API for mobile onboarding and edge licenses for on-site cameras. Same account, same dashboard, one invoice.