Build with FaceTagr
SDKs for mobile, APIs for cloud, edge gateways for CCTV. Embed sovereign identity verification into your applications.
Face Recognition SDK (Android & iOS)
Edge-native SDK with on-device 1:1 verification, 1:N identification, and passive liveness. Fully offline biometric workflows, with Flutter and React Native support.
Cloud REST API
Cloud endpoints for face enrollment, verification, identification, and liveness detection, with webhook support for connected workflows.
Edge Gateway API (NBOX)
Local API on NBOX hardware for CCTV-based face recognition, alerts, and analytics. No cloud dependency. Supports up to 32 streams.
Webhook Notifications
Real-time event callbacks for face matches, alerts, attendance events, and system health. JSON payload with snapshot URLs.
API Examples
// Face Verification - REST API
POST /api/v1/verify
Content-Type: multipart/form-data
Authorization: Bearer <API_KEY>
{
"reference_image": "<base64>",
"probe_image": "<base64>",
"liveness_check": true,
"threshold": 0.85
}
// Response
{
"match": true,
"confidence": 0.9891,
"liveness": "passed",
"processing_time_ms": 142
}// 1:N Search - REST API
POST /api/v1/identify
Content-Type: multipart/form-data
Authorization: Bearer <API_KEY>
{
"probe_image": "<base64>",
"gallery": "watchlist_alpha",
"max_results": 5,
"threshold": 0.80
}
// Response
{
"matches": [
{ "person_id": "P-4821", "confidence": 0.9734, "name": "..." },
{ "person_id": "P-1092", "confidence": 0.8912, "name": "..." }
],
"processing_time_ms": 89
}// Face Enrollment - REST API
POST /api/v1/enroll
Content-Type: multipart/form-data
Authorization: Bearer <API_KEY>
{
"person_id": "EMP-0042",
"images": ["<base64>", "<base64>"],
"gallery": "workforce_hq",
"metadata": { "department": "Engineering" }
}
// Response
{
"enrolled": true,
"person_id": "EMP-0042",
"face_count": 2,
"quality_scores": [0.94, 0.91]
}Deployment Options
Cloud API, on-premise SDK, or NBOX edge gateway. Choose your architecture.
Platform Support
Native Android and iOS SDKs, Flutter and React Native support, REST API for connected systems, and RTSP/ONVIF for CCTV.
Documentation
API reference, integration guides, and sample code. Technical support included.
Start Building
Get SDK access and technical documentation.
