Face Liveliness Check
Face authentication with liveliness check
With this endpoint, users can submit facial images to the system, which will analyze them to determine whether the image is AI-generated, manipulated, or captured from a real human. This helps verify the authenticity of the submitted image and prevents the use of synthetic or fraudulent facial data, strengthening the security and reliability of the verification process. When used via the SDK, the system also performs a liveness check to confirm that the face is from a live, present user and not a still image or pre-recorded media.
TEST DATA
image:
{
"image": "/9j/4AAQSkZJRgABAQEBLAEsAAD/4QBWRXhpZgAATU0AKg=="
}
POST
{{URL}}/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",
"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
| 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 10 days ago
