Face Liveness

The Face Liveness API analyzes a user-submitted face image to determine whether it is a live capture or a spoof attempt. This endpoint processes the image, runs liveness detection checks, and returns a response indicating the liveness status along with a confidence score.

Face Liveness

POST {{BASE-URL}}/verification/external/face/liveness

Headers

Name
Value

Content-Type

application/json

api-key

<api key from your portal>

Body

Name
Type
Description

image

string

face image - base64

Response

```json
{
    "status": true,
    "message": "Livenss detection successful",
    "data": {
         "status": true, 
         "liveness_score": 92.3
    }
}
```

Last updated