Pruvly
  • Getting Started
    • Quick Start – Pruvly APIs
  • Document Engine
    • Document Check
    • FACE BIOMETRIC
    • Face matching
    • Age Detection
    • Face Liveness
Powered by GitBook
On this page
  1. Document Engine

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
    }
}
```
{
  "status": false
  "message": "Could not detect face"
}
PreviousAge Detection

Last updated 3 months ago