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: https://res.cloudinary.com/dh3i1wodq/image/upload/v1675417496/cbimage_3_drqdoc.jpg
POST
{{URL}}/peleza/verification/biometrics/face/liveliness_check
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
image | User's image url(png, jpg, base64) |
Sample Response
{
"status": true,
"detail": "Liveliness Detected",
"confidence": 0.99,
"confidence_in_percentage": 99.9
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | Indicates the detail of the response. |
confidence | Represents the confidence score associated with the liveliness detection. |
confidence_in_percentage | Provides the confidence score in percentage form for easier interpretation. |
Updated 9 months ago