API Catalog Biometrics APIs

Biometrics APIs

Face, voice & fingerprint verification

Biometric authentication APIs for face recognition, voice verification, and fingerprint matching.

Face Verification

Popular

Compare faces for identity verification with liveness detection.

POST /api/v1/biometrics/face-verify
{ "image1": "base64...",
  "image2": "base64...",
  "liveness_check": true }

// Response
{ "match": true,
  "similarity": 0.96,
  "liveness": true,
  "confidence": 0.98 }
1:1 Matching Liveness High Accuracy

Face Recognition

Identify faces in images with encoding.

POST /api/v1/biometrics/face-recognize
{ "image": "base64...",
  "gallery_id": "employees" }

// Response
{ "faces_detected": 1,
  "matches": [{
    "person_id": "emp_123",
    "similarity": 0.94,
    "bounding_box": {...} }] }
1:N Search Face Encoding Gallery Support

Voice Verification

Verify identity by voice biometrics.

POST /api/v1/biometrics/voice-verify
{ "audio": "base64...",
  "user_id": "user_456",
  "phrase": "My voice is my password" }

// Response
{ "match": true,
  "similarity": 0.92,
  "phrase_match": true,
  "confidence": 0.95 }
Voice Print Text Dependent Anti-Replay

Fingerprint Match

Match fingerprint templates.

POST /api/v1/biometrics/fingerprint-match
{ "template1": "base64...",
  "template2": "base64...",
  "format": "ISO_19794" }

// Response
{ "match": true,
  "similarity": 0.98,
  "minutiae_matched": 42,
  "quality_score": 85 }
ISO 19794 Minutiae Quality Check

Liveness Detection

Detect live vs photo/video spoofing.

POST /api/v1/biometrics/liveness
{ "image": "base64...",
  "check_type": "passive" }

// Response
{ "is_live": true,
  "spoof_detected": false,
  "spoof_type": null,
  "confidence": 0.99 }
Anti-Spoof Passive Check Photo/Video

Ready to add biometric authentication?

Get your API key and start verifying identities with biometrics in minutes.