Face Liveliness Check

Face authentication with liveliness check

Liveliness check is a feature that ensures the person being authenticated is physically present and not just a photograph or video.

With this endpoint, users can provide their facial features as input to the system, which will then perform a liveliness check to ensure that the user is present and not just a still image or pre-recorded video. This ensures the security and reliability of the authentication process, as it reduces the risk of unauthorized access by fraudulent means.

👍

TEST DATA

image:

{
"image": "/9j/4AAQSkZJRgABAQEBLAEsAAD/4QBWRXhpZgAATU0AKg=="
}

📘

POST

{{URL}}/verification/biometrics/face/liveliness_check

Request Header

KeyDescription
app-idYour App ID
x-api-keyYour Secret Key

Request Body

KeyDescription
imageUser's image url(png, jpg, base64)

Sample Response

{
  "status": true,
  "detail": "Liveliness Detected",
  "response_code": "00",
  "data": {
    "confidence": 0.9999910736083985,
    "confidence_in_percentage": 99.99910736083984
  },
  "verification": {
    "status": "VERIFIED",
    "reference": "661",
    "verification_id": 661
  },
  "endpoint_name": "Face Liveliness"

Response Description

ResponseDescription
statusIndicates that the request was successful.
detailIndicates the detail of the response.
confidenceRepresents the confidence score associated with the liveliness detection.
confidence_in_percentageProvides the confidence score in percentage form for easier interpretation.